我正在尝试从跨源加载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]
答案 0 :(得分:0)
确保filename
变量具有http://
作为其中一部分的正确路径。示例:http://localhost:8080/css/style.css
或http://localhost:8080/project_folder/css/style.css