你好,我有这个伪代码:
if(cookie set){ $("#notification").hide(); } else { $("#notification").show(); }
我如何集成jQuery Cookie插件,所以如果它找到一个cookie,那么它不会显示#通知?
oprakyz71#
if ($.cookie('whatever')) { //exists } else { //nuthin! }
如果您正在使用:http://plugins.jquery.com/project/Cookie
**[edit]**您还可以:
if ($.cookie('whatever') !== null) { //exists } else { //still nuthin }
2j4z5cfb2#
假设你使用this插件:
if ($.cookie('the_cookie') ) DO_YOUR_WORK;
4xy9mtcn3#
这段代码对我很有用:
<script> if ($.cookie('whatever')) { alert('exists'); } else { alert('not exists'); } //$.cookie('whatever', 'asd'); writing cookie.. </script>
3条答案
按热度按时间oprakyz71#
如果您正在使用:http://plugins.jquery.com/project/Cookie
**[edit]**您还可以:
2j4z5cfb2#
假设你使用this插件:
4xy9mtcn3#
这段代码对我很有用: