CSS和JS去掉链接虚线框的多种方法
当我们点击链接后,链接周围会显示一个虚线框,那么怎么去掉这个虚线框呢?其实方法还挺多,用CSS就可以,但使用javaScript似乎也是一个好方法。
1. CSS方式去掉链接虚线框的方法:
在IE下是使用html属性:hideFoucs,在HTML标签中加上hidefocus=”true” 属性即可,但这个属性是IE私有的,Firefox是不认的。前端框架示例
<a href="#" hidefocus="true" title="加了hidefocus" >加了hidefocus属性</a>
IE中用CSS处理:
a{noOutline:expression(this.onFocus=this.blur());}/* "onFocus" 注意大小写*/
Firefox的处理方法比较符合标准,只需要在CSS样式代码里设置a:focus{outline:none}皆可。接下来看一下MSIE和FF中统一处理的方法:
a{ outline:none; /*FF*/ noOutline:expression(this.onFocus=this.blur());/*IE*/ }
考虑性能优化,可参考以下代码:
a{outline:none;} a:active{noOutline:expression(this.onFocus=this.blur());} :focus{outline:0;}
2. 用js方式解决链接虚框的方法:前端框架示例
<script language="javascript"> $("a").bind("focus", function(){ if(this.blur){ this.blur(); } }); </script>
相关推荐
ThikHome 2020-08-24
NARUTOLUOLUO 2020-08-03
jiedinghui 2020-10-25
Ladyseven 2020-10-22
zuncle 2020-09-28
xiaohuli 2020-09-02
葉無聞 2020-09-01
nicepainkiller 2020-08-20
AlisaClass 2020-08-09
myloveqiqi 2020-08-09
buttonChan 2020-08-02
drdrsky 2020-07-29
Ladyseven 2020-07-25
nicepainkiller 2020-07-24
AlisaClass 2020-07-19
hellowzm 2020-07-19
background-color: blue;background-color: yellow;<input type="button" value="变蓝" @click="changeColorT
昔人已老 2020-07-19
骆驼的自白 2020-07-18
lanzhusiyu 2020-07-19