1 Star 0 Fork 0

Weldon0/HR

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
换肤.html 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
weldon 提交于 2021-02-09 19:48 . first commit
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.demo{
color:red;
}
.ceshi{
background:red;
}
</style>
<script>
// 1. 获取原始的css样式得到一个大的字符串 ajax获取
// 2. 根据你当前要替换的,用正则去替换得到一个新的字符串
// 3. document.head.appendChild(newStyle) 后面 权重更高一点
function change(color){
var text = document.querySelector('style').innerText
var reg = /:(.*);/g
// console.log(reg.exec(text)[1])
var newCss = text.replace(reg.exec(text)[1],color).replace(reg.exec(text)[1],color)
var newStyle = document.createElement('style')
newStyle.innerText = newCss
document.head.appendChild(newStyle)
}
</script>
</head>
<body>
<button onclick="change('red')"></button>
<button onclick="change('blue')"></button>
<div class="demo">2</div>
<div class="ceshi">1</div>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/weldon/HR.git
git@gitee.com:weldon/HR.git
weldon
HR
HR
master

搜索帮助