gpt4 book ai didi

javascript - jQuery 关闭 Div 窗口 + cookie

转载 作者:行者123 更新时间:2023-11-28 20:22:36 24 4
gpt4 key购买 nike

我创建了一个简单的 div 元素,其中包含通知和用于切换元素的关闭按钮

jQuery('.float_close').click(function() {
jQuery('.float_notice').fadeToggle('slow');

modal

通过使用 cookie 来保持其关闭有多困难?

最佳答案

没那么难,但我建议在 http://plugins.jquery.com/cookie/ 之上使用一个额外的 JavaScript 插件 ( jQuery ) .

if ($.cookie('noticeVisibility') !== undefined
&& $.cookie('noticeVisibility') === 'hidden') {

// If a cookie that stores the visibility
// of the notice was set and it says 'hidden', hide the notice
jQuery('.float_notice').hide();
}

jQuery('.float_close').click(function () {
jQuery('.float_notice').fadeToggle('slow');

// Saves a cookie for later
$.cookie('noticeVisibility', 'hidden');
});

关于javascript - jQuery 关闭 Div 窗口 + cookie,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17983909/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com