为什么我无法使用 Select 从 onChange 获取值?

发布于 2024-09-16 14:58:25 字数 472 浏览 9 评论 0原文

测试表单的一部分。所以,现在我只想提醒用户选择什么:

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 技术交流群。

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

发布评论

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

评论(4

呆° 2024-09-23 14:58:25

尝试警报(this.value)

try alert(this.value)

心房的律动 2024-09-23 14:58:25

使用 this 您将传递 HTML 选择元素 到函数,而不是所选选项的值。要获取所选选项的值,需要通过selectedIndexoptions中获取所选选项,然后获取其value。简而言之:

function getData(dropdown) {
    var value = dropdown.options[dropdown.selectedIndex].value;
    alert(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 the options by selectedIndex and then get its value. In a nutshell:

function getData(dropdown) {
    var value = dropdown.options[dropdown.selectedIndex].value;
    alert(value);
}
以往的大感动 2024-09-23 14:58:25

使用 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.

时光礼记 2024-09-23 14:58:25

你可以尝试

alert(title.value)

You can try

alert(title.value)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文