首頁  >  文章  >  web前端  >  詳解select標籤設定預設選取的方法

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

小云云
小云云原創
2018-03-03 09:12:082192瀏覽

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

方法有兩種。

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

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

一些其它操作