我想通过点击图标来改变网站的风格
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="styled.css" id="styles">
</head>
我很难进入href。目前我写了这个脚本:
<script>
function changeTheme(){
document.querySelector("link[href='styled.css']").href = "style.css";
}
</script>
但它只能以一种方式工作,我想要这样的东西:(第一次点击)styled.css -> style.css (第二次点击)style.css -> styled.css。感觉自己启动这个功能不好,所以求助。一个有效的脚本应该是什么样的?
阿波罗的战车
相关分类