为什么我无法使用 Select 从 onChange 获取值?
测试表单的一部分。所以,现在我只想提醒用户选择什么:
JS:
function getData(title)
{
alert(title);
}
HTML generated by PHP:
<select name="currentList" onChange="getData(this);">
<option value="hat">Hat</option>
<option value="shirt">Shirt</option>
<option value="pants">Pants</option>
</select>
当我更改值时,我会收到一条警报:
[object HTMLSelectElement]
Testing part of a form. So, right now I just want to alert what the user selects:
JS:
function getData(title)
{
alert(title);
}
HTML generated by PHP:
<select name="currentList" onChange="getData(this);">
<option value="hat">Hat</option>
<option value="shirt">Shirt</option>
<option value="pants">Pants</option>
</select>
when I change the value I get an alert with:
[object HTMLSelectElement]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试
警报(this.value)
try
alert(this.value)
使用
this
您将传递 HTML 选择元素 到函数,而不是所选选项的值。要获取所选选项的值,需要通过selectedIndex
从options
中获取所选选项,然后获取其value
。简而言之:With
this
you're passing the HTML select element to the function, not the value of the selected option. To obtain the value of the selected option, you need to get the selected option from theoptions
byselectedIndex
and then get itsvalue
. In a nutshell:使用 jQuery,只要将 id="currentList" 添加到选择列表中,就可以使用alert($("#currentList").val()); 来简洁。这样您就不必将“this”传递给 onchange 函数。
With jQuery, you could be concise with alert($("#currentList").val());, as long as you add the id="currentList" to the select list. This way you don't have to pass "this" to the onchange function.
你可以尝试
You can try