需要 JQuery 帮助:在更改事件之前在组合框中触发哪个事件
我想限制用户是否选择已经通过使用 JQuery 显示警报消息选择的语言。 是否有任何事件在更改事件之前触发。
I want to restrict the user if they select the language which is already selected by displaying alert msg using JQuery.
Is there any event which fires before the change event.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
添加新组合框时,只需从新组合框中删除以前的组合框值,然后就不必测试现有值或调用警报。
用户只有剩余的值可供选择。这容易多了。
When you add the new combo box, simply remove the previous combo boxes' values from the new one, then you don't have to test for existing values or call an alert.
The user just has the remaining values to choose from. It's much easier.
为了回答您的问题,focusin 将在更改事件之前触发。
To answer your question, focusin will fire before the change event.
在这种情况下我所做的是:
在 Change 事件中,将现有值与新选择的值进行比较。
如果存在值,我会发出警报消息并将组合框重置为默认选择。
What I did in this kind of situation was:
In Change event, compare the existing values with newly selected one.
if value is there, I alert the message and reset the combo box to default selection.