当用户选择“下拉列表”时触发什么 jQuery?选项

发布于 2024-09-02 23:24:19 字数 573 浏览 1 评论 0原文

我想为该下拉列表的不同选择显示不同的表单:

<label>
    <select name="type" id="type">
<option value="object" selected="selected">Object</option>
<option value="number">Number</option>
<option value="text">Text</option>
<option value="date">Date</option>
<option value="time">Time</option>
<option value="geo">Geospatial</option>
<option value="currency">Currency</option>
</select>
</label>

当用户选择这些选项之一时触发的 jQuery 事件是什么。在这种情况下,.click() 事件也会被触发吗?

I want to display a different form for different selections of this drop down list:

<label>
    <select name="type" id="type">
<option value="object" selected="selected">Object</option>
<option value="number">Number</option>
<option value="text">Text</option>
<option value="date">Date</option>
<option value="time">Time</option>
<option value="geo">Geospatial</option>
<option value="currency">Currency</option>
</select>
</label>

What would be the jQuery event that is triggered when a user selects one of these options. Would the .click() event be triggered in this case as well?

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

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

发布评论

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

评论(1

小忆控 2024-09-09 23:24:19

您应该使用 change 事件。每次鼠标单击都会触发单击,这不是您想要的,即使用户单击组合但不更改值也会触发单击。

另外,click 不利于键盘导航,因此 change 是正确的方法:

$("#type").change(function (){
  // Do whatever you want
});

You should use the change event. Click will be triggered on every mouse click, which is not what you want, and it'll be triggered even if the user clicks on the combo but doesn't change the value.

Also, click won't be good for keyboard navigation, so change is the way to go:

$("#type").change(function (){
  // Do whatever you want
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文