$.fn.fixFxTableMargin @��ؚU �F\ӚU $.fn.fixFxTableMargin = function(conf){ if(!$.browser.mozilla) return this; this.each(function(){ var elem = $(this); elem.wrap('<div class="fixFxTableMargin" />'); var mt = elem.css('margin-top'), mb = elem.css('margin-bottom'); elem.css({'margin-top':0,'margin-bottom':0}) elem.parent().css({'margin-top':mt,'margin-bottom':mb}) }); return this; };