使用jQuery通过Value获取Listbox中的项目文本
这个问题在这里已经有了答案:
HTML代码:
<select>
<option value="1">ayush</option>
</select>
jQuery代码:
var a = $('option[value="1"]').html();
console.log(a);
链接地址: http://www.djcxy.com/p/83057.html
上一篇: Get Text of Item in Listbox by Value using jQuery
下一篇: How to get the text of the selected value of a dropdown list?