我正在我的网站上实现jgrowl,但没有在插件的网站上找到任何迹象,也没有在互联网上找到有关如何显示延迟消息的信息。理想情况下,我希望在页面加载后10秒出现Jgrowl消息。有可能吗?
<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>
答案 0 :(得分:1)
正是其他人所说的。在代码中看到它。
$(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
}
});