国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

js動態修改整個頁面樣式達到換膚效果

2019-11-20 15:12:16
字體:
來源:轉載
供稿:網友
jsPro1/js動態修改整個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="提交" 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
復制代碼 代碼如下:

* {
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
復制代碼 代碼如下:

* {
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;
}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 平乐县| 惠水县| 桓台县| 施秉县| 秦安县| 乌什县| 鱼台县| 巨野县| 佛山市| 历史| 武安市| 涪陵区| 齐齐哈尔市| 化隆| 宿迁市| 泽州县| 张掖市| 宝丰县| 长治县| 甘孜县| 封丘县| 长葛市| 长武县| 肥西县| 江油市| 津南区| 阳朔县| 抚宁县| 车险| 宣化县| 修武县| 固镇县| 杨浦区| 收藏| 勃利县| 南陵县| 佛冈县| 高州市| 磐安县| 竹北市| 吴江市|