尝试用JS保持切换状态

时间:2013-03-17 17:47:06

标签: jquery cookies

我试图保留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('-');
        }
    });
});

Demo

1 个答案:

答案 0 :(得分:0)

你只需要一个children()。因为您带有+文字的内容位于点击的<span>内(只是跨度的孩子)..

$(this).children().html('+');

试试这个

jQuery(document).ready(function($) {
  $("#switch").click(function(event){
    if ($("#navbar").css("display")=='block') {
        $("#navbar").hide('fast');
        $(this).removeClass('close').addClass('open');
        $(this).children().html('+');
    } else {
        $("#navbar").show('fast');
        $(this).removeClass('open').addClass('close');
        $(this).children().html('-');
    }
  });
});

fiddle here