对用户从下拉列表中选择值做出反应
当用户从下拉列表中选择一个值时,是否有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当有人从列表中选择一个值时,会触发
.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.
.change()
.change()
event for the<select>
您可以使用普通的旧 Javascript 来实现此目的:
You can use plain old Javascript for this: