AJAX 问题、无响应或“访问被拒绝”
如果我使用 jQuery .load() 发出 ajax 请求,但在 Firefox 或 chrome 中根本没有得到任何响应,并且在 ie8 中收到错误消息“访问被拒绝”,这意味着什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如果我使用 jQuery .load() 发出 ajax 请求,但在 Firefox 或 chrome 中根本没有得到任何响应,并且在 ie8 中收到错误消息“访问被拒绝”,这意味着什么?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
这通常意味着您试图违反同源策略并从不同的主机请求数据。
It usually means you are trying to violate the same origin policy and request data from a different host.
如果您正在加载位于不同域中的页面(例如:www.yoursite.com 并且您尝试加载“yoursite.com”甚至“google.com”),那么您将得到 跨站点脚本预防错误。
If you're loading a page that's in a different domain (example: www.yoursite.com and you're trying to load "yoursite.com" or even "google.com"), then you are getting a cross-site-scripting prevention error.
尝试通过这样的 php 代理访问您的数据: http://www.daniweb.com/code /snippet216729.html
使用 jQuery,然后您可以将请求发送到 your/relative/path/to/proxy.php?proxy_url=http://www.domain.com/yourdata
try accessing your data through a php proxy like this: http://www.daniweb.com/code/snippet216729.html
with jQuery you can then send a request to your/relative/path/to/proxy.php?proxy_url=http://www.domain.com/yourdata