我正在我的网站上实施jgrowl,但在插件的网站上或互联网上都找不到如何滞后显示消息的任何指示。理想情况下,我希望Jgrowl消息在页面加载后10秒钟出现。可能吗?

<script type="text/javascript">
  $(function () {
    if($.cookie("new_visitor") != "true") {
        $.cookie("new_visitor", "true", { expires: 1, path: '/' });
        $.jGrowl("A message with a header", { header: 'Important' });
    }
  });
</script>

最佳答案

正是其他人所说的。在代码中看到它。

$(function () {
    if($.cookie("new_visitor") !== "true") {

        $.cookie("new_visitor", "true", { expires: 1, path: '/' });

        setTimeout(function(){
            $.jGrowl("A message with a header", { header: 'Important' });
        },10000);  // display after 10 seconds
    }
});

09-25 19:02