学习记录 crossorigin

阅读react栗子的时候,看到引入的script标签中有crossorigin属性,:O

script标签什么时候也有跨域问题了?!!赶紧去查MDN

MDN的对于上边属性的地址

大致意思就是除了script可以加这个属性,img video也都可以加。

img video这种资源文件加这个跨域属性我明白,script加上是干嘛的?!

简单的解释在这里:

rossorigin

Normal script elements pass minimal information to the window.onerror for scripts which do not pass the standard CORS checks. To allow error logging for sites which use a separate domain for static media, use this attribute. See CORS settings attributes for a more descriptive explanation of its valid arguments.

下边是React给的建议

学习记录 crossorigin_第1张图片

你可能感兴趣的:(html5)