换肤

然后在网页开头引入css文件

function changeSyle(name){
css=document.getElementById("cssfile");
css.href=name+".css";
document.styleSheets[0].href=name+".css";
console.log(css.href);
console.log("name="+name);
console.log(name);

    }  

你可能感兴趣的:(换肤)