不刷新页面更改CSS样式(IE6、7、FireFox)

function addCss(path) {
    var css = document.createElement("link");
    css.setAttribute("type", "text/css");
    css.setAttribute("rel", "stylesheet");
    css.href = path;
    document.body.appendChild(css);
}

posted @ 2010-07-22 10:51  Younger  阅读(732)  评论(0编辑  收藏  举报