gpt4 book ai didi

jquery - 集成 jQuery Cookie

转载 作者:行者123 更新时间:2023-12-01 06:30:58 26 4
gpt4 key购买 nike

嗨,我有这个伪代码:

if(cookie set){
$("#notification").hide();
}
else {
$("#notification").show();
}

我如何集成 jQuery Cookie 插件,这样如果它找到 cookie,那么它就不会显示#notification?

谢谢

最佳答案

if ($.cookie('whatever')) {
//exists
} else {
//nuthin!
}

假设您正在使用:http://plugins.jquery.com/project/Cookie

[编辑]您还可以:

if ($.cookie('whatever') !== null) {
//exists
} else {
//still nuthin
}

关于jquery - 集成 jQuery Cookie,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4885899/

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