jQuery 选择的名称

发布于 2024-10-03 02:04:35 字数 260 浏览 2 评论 0原文

如果从下拉框中选择 Tom,我如何使用 jQuery 获取名称而不是值,以便结果输出为 Tom?

<select id="emp" >
  <option value=1>Tom</option>
  <option value=12>Harold</option>e 
  <option value=32>Jenny</option>
</select>

If Tom is selected from the drop down box, how do I get the name and not the value using jQuery so that the resulting output would be Tom?

<select id="emp" >
  <option value=1>Tom</option>
  <option value=12>Harold</option>e 
  <option value=32>Jenny</option>
</select>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

纸伞微斜 2024-10-10 02:04:35
var res = $('#emp :selected').text();

这将获取具有 ID emp 的元素,然后获取 后代元素,即 :selected< /code>,最终返回.tex()内容

这是一个简单的 JavaScript 版本:

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

var res = el.options[el.selectedIndex].text;
var res = $('#emp :selected').text();

This gets the element with the ID emp, then gets the descendant element that is :selected, finally returns the .tex() content.

Here's a plain javascript version:

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

var res = el.options[el.selectedIndex].text;
妄司 2024-10-10 02:04:35
$('#emp option:selected').text();
$('#emp option:selected').text();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文