使用js獲取select選中文字

2022-03-12 14:47:59 字數 1523 閱讀 1447

jquery獲取select選擇的文字與值

獲取select :

獲取select 選中的 text :

$("#ddlregtype").find("option:selected").text();

獲取select選中的 value:

$("#ddlregtype ").val();

獲取select選中的索引:

$("#ddlregtype ").get(0).selectedindex;

設定select:

設定select 選中的索引:

$("#ddlregtype ").get(0).selectedindex=index;//index為索引值

設定select 選中的value:

$("#ddlregtype ").attr("value","normal「);

$("#ddlregtype ").val("normal");

$("#ddlregtype ").get(0).value = value;

設定select 選中的text:

var count=$("#ddlregtype option").length;

for(var i=0;itext"); 

//新增一項option

$("#select_id").prepend("請選擇");

//在前面插入一項option

$("#select_id option:last").remove(); //刪除索引值最大的option

$("#select_id option[index='0']").remove();//刪除索引值為0的option

$("#select_id option[value='3']").remove(); //刪除值為3的option

$("#select_id option[text='4']").remove(); //刪除text值為4的option

清空 select:

$("#ddlregtype ").empty();

工作需要,要獲得兩個表單中的值。如圖:

如何獲得從左邊選擇框新增到右邊選擇框中的值?我想了想用網頁特效可以獲得,這裡用了比較流行的jquery。

js**如下:

//獲取所有屬性值 var item = $("#select1").val();

$(function());

});})

值得注意的是,不能直接寫成

$(function());

});})

html:

選項1選項2

選項3選項4

選項5選項6

選項7選中新增到右邊》

全部新增到右邊》

《選中刪除到左邊

《全部刪除到左邊

使用jquery,ajax呼叫動態填充select的option選項

//繫結classlevel1單擊事件

$("#classlevel1").change(function ()

}});

})

js獲取select標籤選中的值

var obj document.getelementbyidx x testselect 定位id var index obj.selectedindex 選中索引 var text obj.options index text 選中文字 var value obj.options index v...

js獲取select選中的標籤option的值

js中獲取方法 var obj document.getelementbyidx xx x testselect 定位id var index obj.selectedindex 選中索引 var text obj.options index text 選中文字 var value obj.opti...

js動態獲取select選中的option

js動態獲取select選中的option 通過2種方式 一 jquery方法 頁面中必須載入過jquery庫 推薦使用 1 var options test option selected 獲取選中的項 2 alert options.val 拿到選中項的值 3 alert options.tex...