JavaScript 同源策略对动态图像加载的影响
如果 JavaScript 有 同源策略,这是否意味着我无法从不同的域?
If JavaScript has a same origin policy, does that mean that I can't dynamically load images from a different domain?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不可以,同源策略不适用于
标签。
还有其他值得注意的例外情况,其中一些在维基百科文章中进行了描述。它们包括:
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:
同源策略仅限于另一个站点的文档属性。图像不被视为文档属性。
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/