我试图用这个 minifier缩小这个小插件,但结果是错误的。(* ab 和 c 未定义,等等*)
有没有人看到有什么问题,或者是否有一些在线工具也可以检查它是否有效?
谢谢,理查德
编辑*插件现在没有错误*
(function($) {
$.fn.bar = function(options) {
var opts = $.extend({}, $.fn.bar.defaults, options);
return this.each(function() {
$this = $(this);
var o = $.meta ? $.extend({}, opts, $this.data()) : opts;
$this.click(function(e){
if(!$('.jbar').length){
var _remove_cross = "";
timeout = setTimeout(function(){$.fn.bar.removebar();},o.time);
var _message_span = $(document.createElement('span')).addClass('jbar-content').html(o.message);
_message_span.css({"color" : o.color});
var _wrap_bar;
_wrap_bar = (o.position == 'bottom') ?
$(document.createElement('div')).addClass('jbar jbar-bottom'):
$(document.createElement('div')).addClass('jbar jbar-top') ;
_wrap_bar.css({"background-color" : o.background_color});
if(o.removebutton){
_remove_cross = $(document.createElement('a')).addClass('jbar-cross');
_remove_cross.click(function(e){$.fn.bar.removebar();});
}
else{
_wrap_bar.css({"cursor" : "pointer"});
_wrap_bar.click(function(e){$.fn.bar.removebar();});
}
_wrap_bar.append(_message_span).append(_remove_cross).hide().insertBefore($('.content')).fadeIn('fast');
}else{
$('.jbar').find('.jbar-content').html(o.message);
}
});
if(o.auto)$this.trigger('click');
});
};
var timeout;
$.fn.bar.removebar = function(txt) {
if($('.jbar').length){
clearTimeout(timeout);
$('.jbar').fadeOut('fast',function(){
$(this).remove();
});
}
};
$.fn.bar.defaults = {
background_color : '#FFFFFF',
color : '#191919',
position : 'top',
removebutton : false,
time : 8000,
auto:true
};
})(jQuery);