jQuery(document).ready(function () {
jQuery('.switch').change(function () {
/* localStorage.setItem('test','iman');
let x=localStorage.getItem('test');
console.log(x);
})*/
let data = {
"night": "night",
"nightSection": "nightSection",
"checked":"checked"
}
let return_data=localStorage.getItem(data);
localStorage.setItem('theme_mod',JSON.stringify(data));
if (this.checked){
jQuery('body').addClass(JSON.parse(return_data).night);
jQuery('section').addClass(JSON.parse(return_data).nightSection);
jQuery(this).attr("checked" , JSON.parse(return_data).cheked);
}else {
localStorage.clear('theme_mod');
jQuery('body').removeClass(JSON.parse(return_data).night)
jQuery('section ').removeClass(JSON.parse(return_data).nightSection)
jQuery(this).removeAttr("checked");
}
})
if (localStorage.getItem('theme_mod')){
let return_data=localStorage.getItem('theme_mod')
jQuery('body').addClass(JSON.parse(return_data).night);
jQuery('section').addClass(JSON.parse(return_data).nightSection);
jQuery('.switch').attr("checked" , JSON.parse(return_data).cheked);
}
})
کدهای بالا رو زدم
ولی درست کار نمیکنه روز صفحه رو میبندم شب باز میکنه و درست کار نمیکنه