最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

js動(dòng)態(tài)修改整個(gè)頁(yè)面樣式達(dá)到換膚效果

 更新時(shí)間:2014年05月23日 09:54:07   作者:  
這篇文章主要介紹了通過(guò)js動(dòng)態(tài)修改整個(gè)頁(yè)面樣式達(dá)到換膚效果,需要的朋友可以參考下
jsPro1\js動(dòng)態(tài)修改整個(gè)html頁(yè)面樣式(換膚).html
復(fù)制代碼 代碼如下:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>動(dòng)態(tài)修改頁(yè)面樣式</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>修改整個(gè)頁(yè)面的樣式</span><br/>
<input type="text" id="txt"/>
<input type="button" value="提交" class="btn"/>
</div>

<ul id="uList" style="text-decoration: none;margin-top: 100px;">
<li style="display: block;width: 30px;height: 20px;background-color: red;" class="red"></li>
<li style="display: block;width: 30px;height: 20px;background-color: blue" class="blue"></li>
</ul>
</body>
</html>

jsPro1\css\red.css
復(fù)制代碼 代碼如下:

* {
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;
}

jsPro1\css\blue.css
復(fù)制代碼 代碼如下:

* {
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;
}

相關(guān)文章

最新評(píng)論

太和县| 阜阳市| 交口县| 珠海市| 宣化县| 德格县| 花莲县| 大关县| 赣州市| 顺昌县| 沧州市| 旌德县| 盐亭县| 合阳县| 澎湖县| 鲁山县| 永川市| 沐川县| 延津县| 灵山县| 江口县| 崇阳县| 华亭县| 禄劝| 高清| 富平县| 洪泽县| 灵山县| 敖汉旗| 岱山县| 澜沧| 凤阳县| 会昌县| 江门市| 和龙市| 夹江县| 灌阳县| 湖北省| 徐闻县| 江达县| 曲松县|