我想要 HTMl 页面头部的 css 路径,路径应该来自外部 JS 文件,因为我想添加多个 no。的CSS。
问问题
1036 次
1 回答
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
于 2012-06-11T10:27:09.927 回答