欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM type 屬性

定義和用法

type 屬性可返回下拉列表的表單類型。對于下拉列表,類型總是 "select-one" 或 "select-multiple"。

語法

selectObject.type

實例

下面的例子返回下拉列表的表單類型:

<html>
<head>
<script type="text/javascript">
function getType()
  {
  alert(document.getElementById("mySelect").type)
  }
</script>
</head>
<body>

<form>
<select id="mySelect">
  <option>Apple</option>
  <option>Pear</option>
  <option>Banana</option>
  <option>Orange</option>
</select>
<input type="button" onclick="getType()" 
value="Alert type of dropdown list">
</form>
</body>
</html>