jQuery post 将浏览器重定向到不同的 URL
我有一个 jQuery 帖子到“.asmx”文件中的方法。它在 Firefox 3.5 中运行良好,但在 4.0 中则不然。当发布发生时,它会重定向到类似“www.5_124.com”的 URL。不知道发生了什么事。 这种情况仅发生在“asmx”文件中的一种方法上。其他人工作正常。
在 firebug 中,它表示 POST 已中止。
I have a jQuery post to a method in '.asmx' file. It was working well in Firefox 3.5 but not in 4.0. When post happens it redirect to a URL something like 'www.5_124.com'. Don't know what's happening .
And this is happening for only one method in the 'asmx' file. Others are working correct.
In firebug it says the POST is aborted.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了答案。需要在拖放事件结束时返回 false。如果不是,该事件将传播到浏览器。不知道为什么 ff 3.5 没有问题:)。
I found the answer. Need to have return false at the end of the drag and drop event. If not it the event will propagate to the browser. Don't know why ff 3.5 having no issue with it :).