我需要通过ajax加载一堆CSS文件,并在样式表加载完成后调用动画,否则动画会失败。
我这样做并且过去工作得很好,直到我遇到这个跨域是这样的:
$.get(resource.url, {cache:true}, function(css) {
//Now that the stylesheet is in the browser cache, it will load instantly:
$("head").append($("<link>",{
rel: "stylesheet",
type: "text/css",
href: resource.url
}));
}).then(function(){
//Animation here that depends on the loaded css
});
只要resource.url
在同一个域上,它就可以正常工作。一旦我尝试从另一个域加载 css$.get
将失败,如下所示:
XMLHttpRequest cannot load https://example.com/style.css. Origin https://example.com is not allowed by Access-Control-Allow-Origin.
所以我试图通过以下方式将CORS添加到标题中.htaccess
:
<IfModule mod_headers.c>
#cross domain access is okay for resources (#107)
<FilesMatch "\.(css|js)$">
Header add Access-Control-Allow-Origin "*"
</FilesMatch>
</IfModule>
这会将 CORS 标头添加到所有 CSS 和 JS 资源。
由于某种原因, CORS似乎对 chrome 或 firefox(最新版本)都没有影响。
我还注意到,在$.getScript
处理 js 文件时没有强制执行相同的域策略,但它适用于$.get
:
$.get("https://example.com/script.js", {cache: false}, $.noop, "script");
//works regardless of CORS
但:
$.get("https://example.com/script.js", {cache: false}, $.noop);
//does not work (cross domain policy violation)
因此,由于 CORS 没有得到广泛支持,甚至似乎无法解决现代浏览器的问题,所以我需要一些类似于$.getScript
, 但用于 CSS 样式表的东西。
它需要是异步的并具有回调机制。
有任何想法吗?提前致谢...