对用户从下拉列表中选择值做出反应

发布于 2024-12-14 10:46:27 字数 104 浏览 2 评论 0原文

当用户从下拉列表中选择一个值时,是否有一个 jQuery 事件被触发?

我需要根据用户在第一个下拉列表中所做的选择加载表单的下一部分,并且希望避免按下按钮。

谢谢

Is there a jQuery event that gets fired when a user selects a value from a drop down list?

I need to load the next part of a form based on the selection a user makes in the first drop down and would like to avoid a button press.

Thanks

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

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

发布评论

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

评论(3

柠檬色的秋千 2024-12-21 10:46:27

当有人从列表中选择一个值时,会触发 .change() 事件。

如果您没有空白默认值作为第一个选项(“选择一个”),
当页面加载以显示第一个项目的任何内容时,您需要显式触发 .change 事件。

The .change() event is fired when someone selects a value from a list.

If you don't have a blank default value as the first option ('Select One'),
you'll need to explicitly trigger the .change event when the page loads to display whatever content for the first item.

月亮是我掰弯的 2024-12-21 10:46:27

.change()

.change() event for the <select>

顾铮苏瑾 2024-12-21 10:46:27

您可以使用普通的旧 Javascript 来实现此目的:

 <select onchange='callMyMethod()'>

You can use plain old Javascript for this:

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