单击light-mode
时,我试图切换#lights
CSS类,并且我想将此更改存储到cookie中。以下是到目前为止的内容,但是需要用户单击两次才能使其正常工作:
jQuery(document).ready(function($) {
if ($.cookie('light-mode') == "yes") {
$("body").addClass("light-mode");
}
$("#lights").click(function() {
if ($.cookie('light-mode') == "undefined" || $.cookie('light-mode') == "no") {
$.cookie('light-mode', 'yes', {
path: '/'
});
$("body").addClass("light-mode");
} else {
$.cookie('light-mode', 'no', {
path: '/'
});
$("body").removeClass("light-mode");
}
});
});
除非我忽略了一些简单的问题,否则问题可能与我使用Cookie的逻辑有关。
答案 0 :(得分:0)
也许您可以修改方法来使light-mode
类的切换解耦,并像这样将状态持久化到相应的cookie?
jQuery(document).ready(function($) {
if ($.cookie('light-mode') == "yes") {
$("body").addClass("light-mode");
}
$("#lights").click(function() {
/* Toggle the class regardless of cookie state */
$("body").toggleClass("light-mode");
/* Update cookie value based on current class assignment */
$.cookie('light-mode', $("body").hasClass("light-mode") ? 'yes' : 'no', { path: '/' });
});
});