我在我的網站上實現了jgrowl,但沒有在插件的網站上找到任何跡象,也沒有在互聯網上找到有關如何顯示滯後信息的指示。理想情況下,我希望Jgrowl消息在頁面加載10秒後出現。可能嗎?X秒後顯示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>
如何使用超時?... –
您是否嘗試過'setTimeout()'? – Barmar