首頁 > web前端 > js教程 > 主體

詳解select標籤設定預設選取的方法

小云云
發布: 2018-03-03 09:12:08
原創
2199 人瀏覽過

本文主要為大家分享一篇select標籤設定預設選取的選項方法,具有很好的參考價值,希望能幫助大家。

方法有兩種。

第一種 透過標籤選取項目文字的js程式碼為:

var val = document.all.Item.options[document.all.Item.selectedIndex].text
var i=document.getElementById( 'sel' ).options[document.getElementById( 'sel' ).selectedIndex].value;
登入後複製

一些其它操作