我正在使用此脚本更改目标文档上的 css 链接 href="#":
<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";
}
}
和:
<link id="style1" rel="stylesheet" href="css/style.css" type="text/css" media="screen">
并单击按钮:
<button type="button" onclick="toggle()">Switch</button>
但是通过此单击,我需要将 css 链接 href="#" 更改为我的所有 .html 文档。
如何用 cookie 做到这一点?
(顺便说一句,我是 cookie 和 js 的初学者。所以如果可以的话,我将需要整个代码)
谢谢