AJAX 同源策略是否适用于 HTML 页面或 JavaScript 文件或两者的域?

发布于 2024-11-29 02:33:48 字数 288 浏览 0 评论 0原文

如果我在 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 技术交流群。

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

发布评论

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

评论(1

但可醉心 2024-12-06 02:33:48

它是文档的域,而不是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.

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