jquery内容div随着cookie消失
我想让我的问候消息 div 内容块消失,并且 cookie 记住它,并且它不会再次出现在同一用户中。
内容:第一个带有红色关闭按钮的块
代码很简单:
<script type="text/javascript">
$(document).ready(function(){
$(".pane .delete").click(function(){
$(this).parents(".pane").animate({ opacity: 'hide' }, "slow");
});
});
</script>
I want to make so that my greeting message div content block disappears and cookies remembers it and it doesn't appear again for the same user.
the site: http://bhfile.com
the content: first block with red close button
code is simple:
<script type="text/javascript">
$(document).ready(function(){
$(".pane .delete").click(function(){
$(this).parents(".pane").animate({ opacity: 'hide' }, "slow");
});
});
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看如何在Javascript中处理cookie:js cookies
Take a look at how to handle cookies in Javascript: js cookies