AJAX 问题、无响应或“访问被拒绝”

发布于 2024-08-22 01:59:58 字数 101 浏览 6 评论 0 原文

如果我使用 jQuery .load() 发出 ajax 请求,但在 Firefox 或 chrome 中根本没有得到任何响应,并且在 ie8 中收到错误消息“访问被拒绝”,这意味着什么?

What could it mean if I make an ajax request with the jQuery .load() and I get no response at all in firefox or chrome, and in ie8 I get an error saying "Access is Denied"?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

薔薇婲 2024-08-29 01:59:58

这通常意味着您试图违反同源策略并从不同的主机请求数据。

It usually means you are trying to violate the same origin policy and request data from a different host.

心意如水 2024-08-29 01:59:58

如果您正在加载位于不同域中的页面(例如: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.

烟花肆意 2024-08-29 01:59:58

尝试通过这样的 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文