0

我想知道如何计算弹出对话框需要多长时间?例如,当您访问某个站点时,我想将其设置为在弹出窗口出现前 30 秒。那可能吗?

<script type="text/javascript">
            $(function(){
                // Dialog           
                if ($.cookie('showDialog') == undefined || $.cookie('showDialog') == null || $.cookie('showDialog') != 'false') {
                $('#dialog').dialog({
                    autoOpen: true,
                    width: 700,
                    modal: true,
                    buttons:{ "No Thanks": function() { $(this).dialog("close"); $.cookie('showDialog', 'false');  } },

                });
                }
                // Dialog Link
                $('#dialog_link').click(function(){
                    $('#dialog').dialog('open');
                    return false;
                });

                //hover states on the static widgets
                $('#dialog_link, ul#icons li').hover(
                    function() { $(this).addClass('ui-state-hover'); }, 
                    function() { $(this).removeClass('ui-state-hover'); }
                );

            });
</script>
4

1 回答 1

4

您可以使用setTimeout().

setTimeout(function() {
    $('#my-dialog').dialog('open');
},30000);

jsFiddle

于 2012-07-05T19:21:55.017 回答