试图找到只需一个按钮即可在两个样式表之间切换的代码。我试图适应其他人的解决方案,但无济于事(还)。这是我最近的尝试:
设置:
<link id="style1" rel="stylesheet" type="text/css" href="resumecss.css" />
<script type="text/javascript">
function toggle() {
var el = document.getElementById("style1");
if (el.href == "resumecss.css") {
el.href = "resumecssinvert.css";
}
else {
el.href = "resumecss.css";
}
}
</script>
来电:
<button type="button" onclick="toggle()">Switch</button>
目的是重复地在一页上的两个皮肤之间翻转。
在此先感谢你们这些善良/知识渊博的人。