js獲取select標籤選中的值和 賦值

2021-06-19 04:19:43 字數 652 閱讀 9054

var obj = document.getelementbyidx_x(」testselect」); //定位id

var index = obj.selectedindex; // 選中索引

var text = obj.options[index].text; // 選中文字

var value = obj.options[index].value; // 選中值

jquery中獲得選中select值

第一種方式

$('#testselect option:selected').text();//選中的文字

$('#testselect option:selected') .val();//選中的值

$("#testselect ").get(0).selectedindex;//索引

第二種方式

$("#tesetselect").find("option:selected").text();//選中的文字

…….val();

…….get(0).selectedindex;

賦值的方式

第一種$("#type  option:["value='0']").val("0");

第二種$("#type").val("0");

這種方式簡潔 ok

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標籤選中的值

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