jquery ajax请求使用chrome返回状态0,但在IE8上工作正常
我正在尝试使用 jquery/ajax 从服务器提取一些数据。 chrome返回的ajax状态为0,但IE8工作正常。
我正在为这个问题绞尽脑汁。我没有做任何跨网络服务器的事情并尝试使用绝对网址。
还有什么要检查的吗?
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果没有更多详细信息,我能做的就是向您指出以下资源,并希望您会看到与您的设置类似的内容:
请注意,问题通常是跨站点请求或使用
file:///
而不是http[s]://
Without more details, the best I can do is point you to the following resources and hope you'll see something that looks similar to your setup:
Note that the issues are usually cross-site requests or using
file:///
instead ofhttp[s]://
如果您使用图像而不是按钮元素来提交表单,请尝试在 ajax 代码末尾处“return false”。为我工作。
try 'return false' at the end of the ajax code in case you are using image instead of button element to submit the form. Worked for me.