我有这个 HTML 代码:
<link id="style1" rel="stylesheet" href="css/style.css" type="text/css" media="screen">
用这个js:
<script type='text/javascript'>
function toggle() {
var el = document.getElementById("style1");
if (el.href.match("css/style.css")) {
el.href = "css/style-b.css";
}
else {
el.href = "css/style.css";
}
}
<button type="button" onclick="toggle()">Switch</button>
所以,我需要做:当我单击此按钮以更改 Css Href 和我的其他 .html 文档时.. 假设.. 当我从 index.html 转到带有链接的 contact.html 时,我需要在那里也可以更改css。
这个怎么做?(如果没有办法用 HTML/JS 做到这一点,我还有其他选择吗?)
谢谢