js动态修改整个页面样式达到换肤效果
js动态修改整个页面样式达到换肤效果
发布时间:2016-12-30 来源:查字典编辑
摘要:jsPro1js动态修改整个html页面样式(换肤).html复制代码代码如下:动态修改页面样式functiongel(id){return...

jsPro1js动态修改整个html页面样式(换肤).html

复制代码 代码如下:

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

<title>动态修改页面样式</title>

<link href="css/blue.css" rel="stylesheet" id="mylink"/>

<script type="text/javascript">

function gel(id) {

return document.getElementById(id);

}

window.onload = function() {

//更换css文件

var lis = gel("uList").childNodes;

for (var i = 0; i < lis.length; i++) {

if (lis[i].nodeType == 1) {

lis[i].onclick = function () {

gel("mylink").href = "css/" + this.className + ".css";

};

}

}

};

</script>

</head>

<body>

<div>

<span>修改整个页面的样式</span><br/>

<input type="text" id="txt"/>

<input type="button" value="提交"/>

</div>

<ul id="uList">

<li></li>

<li></li>

</ul>

</body>

</html>

jsPro1cssred.css

复制代码 代码如下:

* {

margin: 0px;padding: 0px;

}

body {

background-color: #eeeeee;

}

span {

color: red;

}

#txt {

color: #f00;border: 1px solid #7d1515;

}

.btn {

background-color: #a52a2a;border: none;color: white;width: 100px;height: 28px;

}

jsPro1cssblue.css

复制代码 代码如下:

* {

margin: 0px;padding: 0px;

}

body {

background-color: #eeeeee;

}

span {

color: blue;

}

#txt {

color: #0000cd;border: 1px solid #006400;

}

.btn {

background-color: #0000cd;border: none;color: white;width: 100px;height: 28px;

}

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Javascript教程学习
热门Javascript教程学习
编程开发子分类