为什么我在使用 jquery 加载 google 时收到 HTTP Status 301?
我正在尝试在 div 中加载 google.com 的内容。我正在使用
$('#loadGoogleBtn').click(
function(){ alert ( 'loading' );
$('.container').load('http://google.com');
alert ( 'done' );
});
但它不起作用,而是给了我 301 HTTP地位。 [感谢萤火虫:)]。为什么会发生这种情况。
注意我能够访问 google.com
I am trying to load the content of google.com in a div. I am using
$('#loadGoogleBtn').click(
function(){ alert ( 'loading' );
$('.container').load('http://google.com');
alert ( 'done' );
});
But it is not working, instead it is giving me 301 HTTP status. [ Thanks to firebug :) ]. Why it is happening.
Note i am able to access google.com
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法向这样的远程域发出 XmlHttpRequest,它被同源策略。 Firefox 选择将其呈现为 301,浏览器如何阻止它(即:选择执行该策略)各不相同,但您始终会得到空响应。
这可以防止您执行以下操作:
并使用我存储的 cookie 等进行登录(也受到相同的跨域策略规则的保护)。
You can't make an XmlHttpRequest to a remote domain like this, it's blocked by the same-origin policy. Firefox chooses to present this as a 301, how the browser blocks it (read: chooses to enforce the policy) varies, but you'll always get an empty response.
This prevents you from doing something like:
and using my stored cookies, etc to login (also protected by the same cross-domain policy rules).