使用jQuery删除IE6&IE7中的超链接大纲
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用jQuery删除IE6&IE7中的超链接大纲相关的知识,希望对你有一定的参考价值。
IE6 and IE7 don't respect the 'outline' attribute for hyperlinks. This jQuery snippet removes the annoying outline in these browsers.
$('a').each(function () { $(this).attr('hideFocus','true').css('outline','none'); });
以上是关于使用jQuery删除IE6&IE7中的超链接大纲的主要内容,如果未能解决你的问题,请参考以下文章