例
顯示在下拉列表中選擇的選項的索引和文本:
var x = document.getElementById("mySelect").selectedIndex;
var y = document.getElementById("mySelect").options;
alert("Index: " + y[x].index + " is " + y[x].text);
試一試» 定義和用法
索引屬性設置或返回在下拉列表選項的索引位置。
該指數從0開始。
瀏覽器支持
索引屬性為所有主流瀏覽器的支持。
句法
返回index屬性:
optionObject .index
設置索引屬性:
optionObject .index= 屬性值 值 描述 integer 指定下拉列表中選擇的索引位置
技術細節
返回值: 一個數字,代表一個下拉列表中選擇的索引位置。 該指數從0開始。
更多示例
例
顯示在下拉列表中的所有選項的文本和索引:
var x = document.getElementById("mySelect");
var txt = "All options: ";
var i;
for (i = 0; i < x.length; i++) {
txt = txt + "\n"
+ x.options[i].text + " has index: " + x.options[i].index;
} 試一試»
<選項對象