我根據我在網上找到的內容創建了一個切換,並且一路上出現了一些問題。當我將開關按到「開」狀態時,它應該改變的變量被正確地改變,並且開關也顯示它處於正確模式。但是,當我切換到不同的頁面並返回時,即使應該改變它的變量,切換看起來好像還沒有打開,實際上卻被記住了。切換頁面時切換顯示返回
我想知道如何使用html,css和javascript使頁面看到,如果變量具有「on」值,它將始終顯示開關,就像它在上面一樣,並始終顯示如果情況並非如此,則處於「關閉」狀態。
這裏是我使用的代碼:
的Javascript:
document.addEventListener('DOMContentLoaded', function() {
var checkbox = document.querySelector('input[type="checkbox"]');
checkbox.addEventListener('change', function() {
if (checkbox.checked) {
ProgramState = "off";
put("weekProgramState", "week_program_state", ProgramState);
console.log(ProgramState);
} else {
ProgramState = "on";
put("weekProgramState", "week_program_state", ProgramState);
console.log(ProgramState);
}
});
});
CSS:
/* The switch - the box around the slider */
.switch {
position: relative;
display: inline-block;
width: 50px;
height: 27px;
}
/* Hide default HTML checkbox */
.switch input {display:none;}
/* The slider */
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 20px;
width: 20px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider {
background-color: #2196F3;
}
input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
HTML:
<h3> Program Override
<label class="switch">
<input type="checkbox">
<div class="slider round"></div>
</label> </h3>
閱讀餅乾... –
什麼是「放」? –
put是我從這個工作中得到的一個函數,它把數據放到服務器上。這對我所想的問題並不重要,所以我沒有包括它的含義。另外,您對「讀取Cookie」有何意義? – JoJoDeath