我想在HTMl页面的head部分中使用css路径,路径应该通过外部JS文件,因为我想添加多个no。 of css。
答案 0 :(得分:2)
function addCSS() {
var headtg = document.getElementsByTagName('head')[0];
if (!headtg) {
return;
}
var linktg = document.createElement('link');
linktg.type = 'text/css';
linktg.rel = 'stylesheet';
linktg.href = 'CSS/RoundCorners.css';
linktg.title = 'Rounded Corners';
headtg.appendChild(linktg);
}
来源:http://www.devcurry.com/2009/07/how-to-add-css-link-programmatically.html