无法将Cookie保存状态实现为JQuery切换 [英] Having trouble implementing cookie save state to JQuery toggle

查看:97
本文介绍了无法将Cookie保存状态实现为JQuery切换的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在Nicolas R的帮助下,我一直想出一个JQuery切换器,它使用cookie保存切换器的状态,但是目前难以实现,因为一旦激活所有按钮,它都会为所有按钮输入相同的标题

I've been coming up with a JQuery toggle with the help of Nicolas R that saves the state of the toggle using a cookie but am currently having trouble implementing it as it pulls in the same title for for all the buttons once activated.

请在下面找到

HTML:

<div>
    <a href="#" id="slide1">Slide Toggle +</a>
    <div id="slide1panel" style="display:none; background-color:#4CF;width:100px;height:200px;"></div>
</div>

<div>
    <a href="#" id="slide2">Slide Toggle +</a>
    <div id="slide2panel" style="display:none; background-color:#4CF;width:100px;height:200px;"></div>
</div>

jQuery

$(document).ready(function() {
    // check the cookies when the page loads
    // 1st panel
    if ($.cookie('currentToggleslide1panel') === 'visible') {
        togglePanel($('#slide1panel'), $('#slide1'), true, 0);
    }
    // 2nd panel
     if ($.cookie('currentToggleslide2panel') === 'visible') {
        togglePanel($('#slide2panel'), $('#slide2'), true, 0);
    }    

    //handle the clicking of the show/hide toggle button of the 1st panel
    $('#slide1').click(function() {
        //toggle the panel as required, base on current state
        if ($('#slide1').text() === "Slide Toggle +") {
            togglePanel($('#slide1panel'), $('#slide1'), true, 'slow');
        }
        else {
            togglePanel($('#slide1panel'), $('#slide1'), false, 'slow');
        }
    });

     //handle the clicking of the show/hide toggle button of the 2nd panel
    $('#slide2').click(function() {
        //toggle the panel as required, base on current state
        if ($('#slide2').text() === "Slide Toggle +") {
            togglePanel($('#slide2panel'), $('#slide2'), true, 'slow');
        }
        else {
            togglePanel($('#slide2panel'), $('#slide2'), false, 'slow');
        }
    });
});

function togglePanel(panel, button, show, toggleSpeed) {
    if(toggleSpeed > 0 || toggleSpeed === 'slow' || toggleSpeed === 'fast') {
        panel.slideToggle(toggleSpeed);
    } else {
        panel.toggle();
    }

    if (show) {
        // Set a cookie containing the panel name
        $.cookie('currentToggle' + panel.attr('id'), 'visible', { path: '/' });
        button.text('Slide Toggle -');
    } else {
        // Set a cookie containing the panel name
        $.cookie('currentToggle' + panel.attr('id'), 'hidden', { path: '/' });
        button.text('Slide Toggle +');
    }
}

JS小提琴

谢谢!

推荐答案

Cozmoz,

我在您的JS小提琴中更新了引用的cookie脚本(请参阅外部资源):它现在似乎可以工作.当我第一次尝试时,cookie引起了错误. 文本是独立变化的,能否检查小提琴中是否有错误?

I updated the referenced cookie script in your JS Fiddle (see external resources): it seems to work now. When I first tried the cookie was causing a bug. The text is changing independtly, can you check if you have a bug in the fiddle?

新的响应:面板之间的文本不同,在此示例中,我使用当前文本,并用加/减符号替换最后一个字符

new response: the text are different between the panels, in this sample I use the current text and replace the last character by a plus/minus symbol

http://jsfiddle.net/xVa7e/6/

$(document).ready(function() {
    // check the cookies when the page loads
    // 1st panel
    if ($.cookie('currentToggleslide1panel') === 'visible') {
        togglePanel($('#slide1panel'), $('#slide1'), 0);
    }
    // 2nd panel
     if ($.cookie('currentToggleslide2panel') === 'visible') {
        togglePanel($('#slide2panel'), $('#slide2'), 0);
    }    

    //handle the clicking of the show/hide toggle button of the 1st panel
    $('#slide1').click(function() {
        //toggle the panel as required
        togglePanel($('#slide1panel'), $('#slide1'), 'slow');
    });

     //handle the clicking of the show/hide toggle button of the 2nd panel
    $('#slide2').click(function() {
        //toggle the panel as required
        togglePanel($('#slide2panel'), $('#slide2'), 'slow');
    });
});

function togglePanel(panel, button, toggleSpeed) {
    var panelPreviousStateVisible = panel.is(':visible');
    // Toggle the div
    if (toggleSpeed > 0 || toggleSpeed === 'slow' || toggleSpeed === 'fast') {
        panel.slideToggle(toggleSpeed);
    } else {
        panel.toggle();
    }

    // Once toggled, set the cookie and the text
    if (!panelPreviousStateVisible) { 
        $.cookie('currentToggle' + panel.attr('id'), 'visible', { path: '/' });
        // Set the text by removing the last char and add a minus symbol
        button.text(button.text().slice(0,-1) + "-");
    } else {
         $.cookie('currentToggle' + panel.attr('id'), 'hidden', { path: '/' });
        // Set the text by removing the last char and add a plus symbol
        button.text(button.text().slice(0,-1) + "+");
    }
}

这篇关于无法将Cookie保存状态实现为JQuery切换的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆