关于去掉a标签点击后的虚框的解决方案
我们时常在一些场景遇到a标签点击后需要去掉虚线框,这边我们给出一个解决方案:
?
1、首先来兼容IE
//增加hidefocus的属性<a hidefocus id="test"></a>
2、非IE的设置:
a{outline:0 none;}