jQuery选择了名字

前端之家收集整理的这篇文章主要介绍了jQuery选择了名字前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果从下拉框中选择Tom,我如何使用jQuery获取名称而不是值,以便得到的输出是Tom?
<select id="emp" >
  <option value=1>Tom</option>
  <option value=12>Harold</option>e 
  <option value=32>Jenny</option>
</select>

解决方法

var res = $('#emp :selected').text();

这将得到the ID emp的元素,然后得到the descendant element:selected,最后返回the .tex() content.

这是一个普通的javascript版本:

var el = document.getElementById('emp');

var res = el.options[el.selectedIndex].text;
原文链接:https://www.f2er.com/jquery/176441.html

猜你在找的jQuery相关文章