gpt4 book ai didi

javascript - 浏览器不加载带有 "Access-Control-Allow-Origin: *"的 CSS

转载 作者:行者123 更新时间:2023-12-04 19:35:24 25 4
gpt4 key购买 nike

我正在尝试从跨源加载 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] 中加载

最佳答案

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

关于javascript - 浏览器不加载带有 "Access-Control-Allow-Origin: *"的 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14684149/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com