方法有兩種。
第一種 通過<select>的屬性來設置選中項,此方法可以在動態語言如php在后臺根據需要控制輸出結果。
< select id = "sel" > < option value = "1" >1</ option > < option value = "2" selected = "selected" >2</ option > < option value = "3" >3</ option > </ select >
第二種 為通過前端js來控制選中的項:
< script type = "text/javascript" > function change(){ document.getElementById("sel")[2].selected=true; } </ script > < select id = "sel" > < option value = "1" >1</ option > < option value = "2" >2</ option > < option value = "3" >3</ option > </ select > < input type = "button" value = "修改" onclick = "change()" />
獲取<select>標簽選中項文本的js代碼為:
var val = document.all.Item.options[document.all.Item.selectedIndex].text var i=document.getElementById( 'sel' ).options[document.getElementById( 'sel' ).selectedIndex].value;
一些其它操作<select>標簽的技巧如下:
1)動態創建select
function createSelect(){ var mySelect = document.createElement( "select" ); mySelect.id = "mySelect" ; document.body.appendChild(mySelect); }
2)添加選項option
function addOption(){ //根據id查找對象, var obj=document.getElementById( 'mySelect' ); //添加一個選項 obj.add( new Option( "文本" , "值" )); }
3)刪除所有選項option
function removeAll(){ var obj=document.getElementById( 'mySelect' ); obj.options.length=0; }
4)刪除一個選項option
function removeOne(){ var obj=document.getElementById( 'mySelect' ); //index,要刪除選項的序號,這里取當前選中選項的序號 var index=obj.selectedIndex; obj.options.remove(index); }
5)獲得選項option的值
var obj=document.getElementById( 'mySelect' ); var index=obj.selectedIndex; //序號,取當前選中選項的序號 var val = obj.options[index].value;
6)獲得選項option的文本
var obj=document.getElementById( 'mySelect' ); var index=obj.selectedIndex; //序號,取當前選中選項的序號 var val = obj.options[index].text;
7)修改選項option
var obj=document.getElementById( 'mySelect' ); var index=obj.selectedIndex; //序號,取當前選中選項的序號 var val = obj.options[index]= new Option( "新文本" , "新值" );
8)刪除select
function removeSelect(){ var mySelect = document.getElementById( "mySelect" ); mySelect.parentNode.removeChild(mySelect); }
以上這篇select標簽設置默認選中的選項方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持腳本之家。
聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com