本来天真的以为直接this.value()就能去到select的值,可事实并非那么回事. <script> document.getElementById('select').onchange=function(){ console.log(this.value) // return ''; } </script> this是select下拉框对象,是一个集合,so,打印出this.options来看看 good,找到了,selectedIndex,就是这货,选中的值的索引 ok,…
生活城市: <select id="province"> <option>河南省</option> <option>黑龙江省</option> <option></option> </select> 在script中获取被选中的option的值: var province = document.querySelector("#province"); //select对象集…
温故而知新,一起复习下jq的知识点. (1) jq获取被选中的option的值 <select id="select_id"> <option value="0">请选择</option> <option value="1">11111111111</option> <option value="2>222222222</option> <opti…
一,select的onchange事件获取不了option的value是当你使用JQ($("#xxx").val())方法的获取的值一直提示undefined 二,解决方法: var selectedIndex =$("#XXX").selectedIndex; var value = $("#XXX").options[selectedIndex ].value; 解决方法如上,先获取选中的index,然后通过index获取value…
jquery获取选中的文本和值 1.说明 (1)获取select下拉框选中的索引       $("#selection").get(0).selectedIndex; (2)获取select下拉框选中的值      $("#selection option:selected").val(); (3)获取select下拉框选中的文本     $("#selection option:selected").text(); 2.实现源码 <!D…
简单描述:后台需要获取到select标签选择的内容,也就是text,该怎么取呢?很简单. 代码: //hml代码<div class="col-md-6"> <label class="control-label flex" style="margin-top: 10px;"> 机构<span class="star align-items">*</span> </labe…
一:JavaScript原生的方法 1:拿到select对象: var myselect=document.getElementById(“test”); 2:拿到选中项的索引:var index=myselect.selectedIndex ; // selectedIndex代表的是你所选中项的index 3:拿到选中项options的value: myselect.options[index].value; 4:拿到选中项options的text: myselect.options[ind…
很简单的select标签: <select id="hello" onchange="getContent(this.value,this.options[this.selectedIndex].text)"><option value=1>a</option><option value=2>b</option><option value=3>c</option><option…
<select id="select">      <option>绥江</option>      <option>西江</option>      <option>北江</option>      <option>贺江</option>      <option>新兴江</option> </select> $(function(){  …
1.首先要保证select中每一个option标签都有value属性: 2.jquery的写法 1 $('#sele').val()//这里假设select的id是sele,这样可以获取当前选中的option的value 3.刚开始没有选择的时候默认的是第一个option的value值: 4.要测试的话可以写一个change事件,也就是每一次选择都会触发 1 2 3 $('#sele').change(function(){      console.log($('#sele').val())/…