标签:blog http io 使用 sp strong on log bs
1. CSS方式
在IE下是使用html属性:hideFoucs,在HTML标签中加上hidefocus=”true”属性即可,但这个属性是IE私有的,Firefox是不认的。
加了hidefocus属性
IE中用CSS处理的方式为:
a{noOutline:expression_r(this.onFocus=this.blur());}
Firefox的处理方法比较符合标准,只需要在样式里设置a:focus{outline:none}皆可:
a:focus{outline:none}
MSIE和FF中的统一处理方法:
a{
outline:none;
noOutline:expression_r(this.onFocus=this.blur());
}
考虑性能优化:
a{outline:none;}
a:active{noOutline:expression_r(this.onFocus=this.blur());}
:focus{outline:0;}
2. js方式
$("a").bind("focus", function(){
if(this.blur){
this.blur();
}
});
a:focus{outline: none;} 如何去掉点击链接时周围的虚线框outline属性
标签:blog http io 使用 sp strong on log bs
原文地址:http://www.cnblogs.com/q460021417/p/4153724.html