使用jQuery修复IE6双边距错误/重复字符错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用jQuery修复IE6双边距错误/重复字符错误相关的知识,希望对你有一定的参考价值。
If you've ever been frustrated at fixing multiple double margin / duplicate character bugs in your page, using this handy jQuery snippit, you can wipe them away instantly!This code requires the latest version of jQuery.
$('*').each(function() { if ($(this).css('float') !== 'none') { $(this).css('display', 'inline'); } });
以上是关于使用jQuery修复IE6双边距错误/重复字符错误的主要内容,如果未能解决你的问题,请参考以下文章