JQuery和cookie弹出框

时间:2012-02-01 13:07:40

标签: javascript jquery modal-dialog bpopup

我有一个显示表单的弹出窗口。我只希望它在用户第一次进入网站时显示一次,然后再显示不再显示。下面的代码不起作用,没有cookie,如果弹出窗口有效。

  <script language="javascript" type="text/javascript">
        window.onload=function(){
            if(jQuery.cookie("popup") != "false"){
                jQuery("#subscribePop").bPopup({
                    modal: true
                });
                jQuery.cookie("popup","false");
                return false
            }
        }
    </script>

我仍然无法使用此代码处理此错误或没有任何错误。是否还有另一种方法可以更好地做到这一点,只是希望div在他们进入时显示一次然后在该用户关闭后不再显示

这是最好的方法吗?我愿意接受其他建议:)

1 个答案:

答案 0 :(得分:0)

<script type="text/javascript">
    jQuery(document).ready(function($){
        if (!$.cookie("popup")) {
            //trigger your popup message
           $("#subscribePop").trigger('create'); //or whatever command you have for pop-ing it
            //after pop-up show, rewrite the cookie
           $.cookie("popup","false"); //not to show again
        }
        else
        {
           $("#subscribePop").trigger('destroy'); //or whatever
        }
    });
</script>

希望它有助于这种或那种方式