使用jgrowl时,如果我们调用以下内容关闭所有菜单
$.jGrowl(data);
$.jGrowl('shutdown');
如何重新开始。
以下是错误
$.jGrowl('startup');
感谢。
答案 0 :(得分:0)
启动应该是一个有效的选择:
http://bitbucket.org/stanlemon/jgrowl/src/47d58d0e497f/jquery.jgrowl.js
此页面的代码段:
/** Setup the jGrowl Notification Container **/
startup: function(e) {
this.element = $(e).addClass('jGrowl').append('<div class="jGrowl-notification"></div>');
this.interval = setInterval( function() {
$(e).data('jGrowl.instance').update();
}, this.defaults.check);
if ($.browser.msie && parseInt($.browser.version) < 7 && !window["XMLHttpRequest"]) {
$(this.element).addClass('ie6');
}
},
您能否提供错误的详细信息,还有一些代码可以帮助我们确定出现了什么问题?
由于