我已经成功地使用这个脚本来设置一个 jquery cookie,它向网站访问者显示一个显示模式,但每天只显示一次。
<script type="text/javascript">
$(document).ready(function(){
// if the cookie doesn't exist create it and show the modal
if ( ! $.cookie('hereToday') ) {
// create the cookie. Set it to expire in 1 day
$.cookie('hereToday', true, { expires: 1 });
//call the reveal modal
$('#subscribe').reveal();
}
});
</script>
如何在脚本中添加超时功能,在触发模态之前会增加几秒钟的延迟?