js獲取select選中的內容
阿新 • • 發佈:2018-11-19
### 獲取select選中的內容
- js獲取select標籤選中的值
var obj = document.getElementById("selectId");//獲取select物件
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();//選中的文字
$("#tesetSelect").find("option:selected").val();
$("#tesetSelect").find("option:selected").get(0).selectedIndex;