我正在尝试在 Facebook 上制作侧边栏。好吧,不完全是。我只想在重新加载或转到不同页面后记住 jQuery 的状态。我不明白如何使用 cookie 插件。我在哪里把它放在这个脚本上?它是怎么写的?我下载了插件,它在 html 文件中,但我不知道如何通过 jQuery 执行它。
$(document).ready(function(){
$("#arrow").bind('click', function(){
$('#wrappernav').fadeOut("fast");
$('#sidebar').fadeOut("fast");
$('#wrappernavbg').fadeOut("fast");
$('#naviclosed').fadeIn("fast");
$(window).unbind('resize');
//I want jQuery to remember this state after refresh.
});
$('#naviclosed').bind('click', function () {
$('#wrappernav').fadeIn("fast");
$('#sidebar').fadeIn("fast");
$('#wrappernavbg').fadeIn("fast");
$('#naviclosed').fadeOut("fast");
$(window).bind('resize', ScreenSize);
});
});