因此,我无法切换此开关来更改背景颜色。我不确定如何获取它以删除适用于该文档的CSS。我希望它在不同的彩色背景之间切换。

这是我的代码:

<!Doctype html>
<html lang="en">
<head>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <div class="container">
        <label class="switch"><input id="input" type="checkbox" /><div></div></label>
    </div>
    <footer>
        <script src="https://code.jquery.com/jquery-2.2.1.js"></script>
        <script type="text/javascript" src="js.js"></script>
    </footer>
</body>
</html>


样式:

html {
background: #878476;
}

.container {
position: absolute;
top: 0; right: 0; bottom: 0; left: 0;
height: 40px;
margin: auto;
text-align: center;
}

.switch input {
position: absolute;
opacity: 0;
}

.switch {
display: inline-block;
font-size: 20px; /* 1 */
height: 1em;
width: 2em;
background: #BDB9A6;
border-radius: 1em;
}

.switch div {
height: 1em;
width: 1em;
border-radius: 1em;
background: #FFF;
box-shadow: 0 0.1em 0.3em rgba(0,0,0,0.3);
transition: all 300ms;
transition: all 300ms;
transition: all 300ms;
}

.switch input:checked + div {
transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}


和JS:

$(document).ready(function() {
console.log( "Coffee Isn't strong enough for me to remember how to toggle the OnClick" );
$(".switch").on("click", function() {
    $("html").css("background", "blue");
});
});

最佳答案

您可以在此处使用切换类,以获取更多信息的链接http://api.jquery.com/toggleclass/

$("#input").on("click", function() {
    $("html").toggleClass("bck-change");
});


而且我还修改了您的代码,请参考:https://jsfiddle.net/eLgqe2ya/

关于javascript - 删除click事件应用的CSS,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35979496/

10-10 00:23