我的网站上有一个包含在 id="intro-wrapper" 中的介绍视频,并带有一个“隐藏”按钮。这个隐藏效果的脚本是:
<script>
$(document).ready(function() {
if ($.cookie('intro') === null) {
$('#intro-wrapper').show();
} else {
$('#hide').click(function() {
$.cookie('intro', '1', {expires:7, path:'/'});
$("#intro-wrapper").hide( "blind", 300 );
});
}
});
</script>
我对 jQuery 不是很好,以上对我来说是重要的一步:)
我想检查用户是否在使用 cookie 之前单击了隐藏按钮。