更新:jquery 对话框模式单选按钮未选择 ajax
我这里有问题。我有一个 jquery 模式对话框,上面有 2 个单选按钮。在我的代码中,我有 jQuery ajaxStart 和 ajaxStop 处理程序来检查 Ajax 请求(当执行 Ajax 请求时,我还会弹出另一个 jquery 对话框来显示“正在加载...”消息或其他内容)。当我选择每个单选按钮时,就会发出 ajax 请求。我遇到的问题是,由于 ajax 事件(ajaxStart、ajaxStop),当我单击单选按钮时,它们没有被选中(尽管我得到了单选按钮的正确值)。知道什么可能会导致这种情况吗?
您可以通过这个 jsfiddle 来了解我的意思,
谢谢
I have a problem here. I have a jquery modal dialog on which I have 2 radio buttons. In my code I have jQuery ajaxStart and ajaxStop handlers to check for Ajax requests (I also have an other jquery dialog pop up to display a Loading... message or something when there is an Ajax request executing). When I select each radio button, an ajax request is made. The problem I am having is that because of the ajax events (ajaxStart, ajaxStop), when I click on the radio buttons, they are not selected (although I get the correct value of my radio button). Any idea what might cause this?
You can see an illustration of what I meean with this jsfiddle
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不知何故,显示加载对话框会干扰单击事件。如果您使用
setTimeout
延迟 ajax 调用,它就会起作用。http://jsfiddle.net/jTGCF/66/
Somehow showing the loading dialog is interfering with the click event. If you delay the ajax call with
setTimeout
, it works.http://jsfiddle.net/jTGCF/66/