如何动态调用html页面的head部分中的css路径

时间:2012-06-11 10:24:08

标签: javascript css

我想在HTMl页面的head部分中使用css路径,路径应该通过外部JS文件,因为我想添加多个no。 of css。

1 个答案:

答案 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