我已经构建了这个函数来检查脚本或样式表是否已经附加到 HTML 的 head 标记中。如果脚本已经存在,则该函数应防止再次附加相同的引用。
这是我的代码:
function appendScript(path, type) {
var x = document.getElementsByTagName(type);
var header_already_added = false;
for (var i=0; i< x.length; i++){
if (x[i].src == path || x[i].href == path){
// ... do not add header again
header_already_added = true;
}
}
if (header_already_added == false){
var head = document.getElementsByTagName('head')[0];
// We create the style
if (type == 'link') {
var style = document.createElement('link');
style.setAttribute("rel", "stylesheet");
style.setAttribute("type", "text/css");
style.setAttribute("href", path)
head.appendChild(style);
} else if (type == 'script') {
var script = document.createElement('script');
script.setAttribute("type", "text/javascript");
script.setAttribute("src", path);
head.appendChild(script);
}
}
}
我这样调用函数
appendScript('_css/style.test.css', 'link');
appendScript('_scripts/_js/script.test.js', 'script');
控制台日志没有任何问题。但问题是它不会阻止脚本再次被附加。任何人都可以发现错误吗?