JavaScript 同源策略对动态图像加载的影响

发布于 2024-10-03 17:52:36 字数 120 浏览 6 评论 0原文

如果 JavaScript 有 同源策略,这是否意味着我无法从不同的域?

If JavaScript has a same origin policy, does that mean that I can't dynamically load images from a different domain?

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

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

发布评论

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

评论(2

ゞ花落谁相伴 2024-10-10 17:52:36

不可以,同源策略不适用于 标签。

还有其他值得注意的例外情况,其中一些在维基百科文章中进行了描述。它们包括:

  • 样式表
  • 脚本(这就是 JSONP 的工作原理)
  • 表单提交

No, the same origin policy does not apply to <img> tags.

There are other notable exceptions, some of which are described in that Wikipedia article. They include:

  • Style-sheets
  • Scripts (this is how JSONP works)
  • Form submissions
千と千尋 2024-10-10 17:52:36

同源策略仅限于另一个站点的文档属性。图像不被视为文档属性。

http://www.devarticles.com/c/a/JavaScript/JavaScript-安全/

The same-origin policy is limited to document properties of another site. Images are not considered as document properties.

http://www.devarticles.com/c/a/JavaScript/JavaScript-Security/

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