2.1网页换肤

Posted

萹 豆 的 菜 园

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2.1网页换肤相关的知识,希望对你有一定的参考价值。

功能:鼠标点击不同的2个input进行换肤(切换样式表)

事件:onclick

属性:样式表link里的href

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Examples</title>
<meta name="description" content="">
<meta name="keywords" content="">


<link id="l1" href="css1.css" rel="stylesheet" type="text/css"
charset="UTF-8">
</head>
<body>
<input id="input1" type="button" value="皮肤1" />
<input id="input2" type="button" value="皮肤2" />

<script src="js1.js"> </script>
</body>
</html>

////////////////css1

body{background: pink;}
#input1{
background:pink;
width:200px;
height:100px;
border:1px yellow solid;
}
#input2{
background:green;
width:200px;
height:100px;
border:1px yellow solid;
}

/////////////////css2

body{background: green;}
#input1{
background:pink;
width:100px;
height:50px;
border:1px blue solid;
}
#input2{
background:green;
width:100px;
height:50px;
border:1px blue solid;
}

//////////////////js

var input1=document.getElementById("input1");
var input2=document.getElementById("input2");
input1.onclick=function (){
var oL=document.getElementById("l1");
oL.href="css1.css";


};
input2.onclick=function (){
var oL=document.getElementById("l1");
oL.href="css2.css";

};

以上是关于2.1网页换肤的主要内容,如果未能解决你的问题,请参考以下文章

网页换肤,模块换肤,jQuery的Cookie插件使用(转)

网页换肤

js网页换肤

React练习 :网页换肤

网页换肤:原生js与jq

网页换肤效果 系统界面切换皮肤样式