AJAX 同源策略是否适用于 HTML 页面或 JavaScript 文件或两者的域?
如果我在 www.example.com/page.html 托管一个页面,并且它包含以下行:
<script src="http://sub.example.com/script.js"></script>
...在该脚本中,我可以使用 XMLHTTPRequest
加载 JSON来自 sub.example.com 的数据?还是同源策略只将HTML页面的服务器算作源?
If I host a page at www.example.com/page.html, and it has this line:
<script src="http://sub.example.com/script.js"></script>
...In that script, can I use XMLHTTPRequest
to load JSON data from sub.example.com? Or does the same origin policy only count the HTML page's server as the origin?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它是文档的域,而不是JS文件的域。您可以通过查看
document.domain< 的值来了解当前域是什么/代码>
。
It's the domain of the document, not of the JS file. You can see what the current domain is by looking at the value of
document.domain
.