HTML DOM id 屬性
定義和用法
id 屬性可設(shè)置或返回下拉列表中選項(xiàng)的 id。
語法
optionObject.id=id
實(shí)例
下面的例子可返回下拉列表中所選選項(xiàng)的 id:
<html>
<head>
<script type="text/javascript">
function alertOptionId()
{
var x=document.getElementById("mySelect").selectedIndex;
alert(document.getElementsByTagName("option")[x].id
);
}
</script>
</head>
<body>
<form>
Select your favorite fruit:
<select id="mySelect">
<option id="apple">Apple</option>
<option id="orange">Orange</option>
<option id="pineapple">Pineapple</option>
<option id="banana">Banana</option>
</select>
<br /><br />
<input type="button" onclick="alertOptionId()" value="Alert id">
</form>
</body>
</html>