HTML DOM selectedIndex 屬性
定義和用法
selectedIndex 屬性可設(shè)置或返回下拉列表中被選選項的索引號。
注釋:若允許多重選擇,則僅會返回第一個被選選項的索引號。
語法
selectObject.selectedIndex=number
實例
下面的例子可提示出被選選項的索引號:
<html>
<head>
<script type="text/javascript">
function getIndex()
{
var x=document.getElementById("mySelect")
alert(x.selectedIndex
)
}
</script>
</head>
<body>
<form>
Select your favorite fruit:
<select id="mySelect">
<option>Apple</option>
<option>Orange</option>
<option>Pineapple</option>
<option>Banana</option>
</select>
<br /><br />
<input type="button" onclick="getIndex()"
value="Alert index of selected option">
</form>
</body>
</html>