我试图保留 jQuery 的切换状态,我无法将 cookie 设置为不使用.toggle()
我的代码
jQuery(document).ready(function($) {
$("#switch").click(function(event){
if ($("#navbar").css("display")=='block') {
$("#navbar").hide('fast');
$(this).removeClass('close').addClass('open');
$(this).children().children().html('+');
} else {
$("#navbar").show('fast');
$(this).removeClass('open').addClass('close');
$(this).children().children().html('-');
}
});
});