js如何获取到select的option值???
Posted lvmenghui0
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js如何获取到select的option值???相关的知识,希望对你有一定的参考价值。
1、获得选项option的值
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;
以上是关于js如何获取到select的option值???的主要内容,如果未能解决你的问题,请参考以下文章
如何更改select option 边框颜色和选中的颜色,css优先,js次之??