通过文本值从下拉列表中选择选项元素
给定一个 HTML 表单元素,例如:
<select id='mydropdown'>
<option value='foo'>Spam</option>
<option value='bar'>Eggs</option>
</select>
我知道我可以选择第一个选项
document.getElementById("mydropdown").value='foo'
但是,假设我有一个值为“Spam”的变量;我可以通过文本而不是值来选择下拉项吗?
Given an HTML form element like:
<select id='mydropdown'>
<option value='foo'>Spam</option>
<option value='bar'>Eggs</option>
</select>
I know I can select the first option with
document.getElementById("mydropdown").value='foo'
However, say I have a variable with the value "Spam"; can I select a dropdown item by its text rather than by its value?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我将使用 selectedIndex 或循环通过文本选择选项,下面的代码不起作用。
I'd use the selectedIndex or a loop to select the option by text, the code below doesn't work.
如果您想通过其内部文本而不是通过值来获取选项,您可以这样做:
If you want to get an option by its innertext and not by the value you can do this:
旧版 IE 不将 select 的选项作为子节点处理,但所有浏览器都实现 select 选项集合的 text 属性。
Older IE does not handle options of a select as child nodes, but all browsers implement the text property of a select's option collection.