0
我試圖使用jQuery的Cookie的插件保存它,jQuery的切換功能:的jQuery - 切換元件和餅乾
每當有人撥動#launchpad,
我想要得到它的當前狀態。
例如,如果某人切換了它,並且它變得隱藏了,那麼我想提醒它現在隱藏了 - 反之亦然。
這是我當前的代碼:
的jQuery:
$(function(){
if($.cookie){
//By default, if no cookie, just display.
$("#launchpad").toggle(!(!!$.cookie("toggle-state")) || $.cookie("toggle-state") === 'true');
}
$('#toggle-launchpad').on('click', function(){
$("#launchpad").toggle(
if($(this).is(":visible")){
alert("visible!!");
}else{
alert("not visible");
}
);
//Save the value to the cookie for 1 day; and cookie domain is whole site, if ignore "path", it will save this cookie for current page only;
$.cookie("toggle-state", $("#launchpad").is(':visible'), {expires: 1, path:'/'});
});
});
HTML:
<div id="launchpad">
<div id="toggle-launchpad" title="Toggle Launchpad" style="display: ;">
<i class="fa fa-plus"></i>
</div>
</div>
我想我不能使用if function
的toggle function
內。有沒有人有解決我的問題?
:櫃面您的評論是關於你的代碼的第一部分,我會爲它寫然後如何檢查#launchpad是否可見或隱藏,並相應地顯示警報? – oliverbj 2014-08-30 14:02:42
我在JSFiddle上創建了一個小例子:http://jsfiddle.net/bddjtx5n/。但是,您仍然可以在匿名函數中使用'$(this).is(':visible')'或'$(「#launchpad」)。is(':visible')',這是「toggle」的第二個參數函數調用。 – 2014-08-30 14:06:47