3

我正在尝试从跨源加载 CSS 和 Javascript 文件。我还在 Access-Control-Allow-Origin: *响应中设置了标题,但浏览器不加载文件,我使用下面给出的代码加载 CSS:

var fileref = document.createElement("link");
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", filename);
document.getElementsByTagName("head")[0].appendChild(fileref);

我想使用 http 连接加载 css 和 js,这将在 https:// [site] 中加载

4

1 回答 1

0

确保filename变量包含正确的路径http://。示例:http://localhost:8080/css/style.csshttp://localhost:8080/project_folder/css/style.css

于 2013-02-04T10:09:14.490 回答