码迷,mamicode.com
首页 > 其他好文 > 详细

清除IE下链接虚线框

时间:2014-11-27 22:04:21      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   os   使用   sp   java   

方法一:利用javascript的onfocus事件,实现如下:
Html代码

<a href="http://www.www.baidu.com"  onfocus="this.blur();">Web前端分享</a>

 

如果引入了jQuery框架则可以利用它的事件绑定机制:
Js代码


$(‘a‘).bind(‘focus‘, function(){
if(this.blur){ //如果支持 this.blur
this.blur();
}
});

 

 

方法二:利用css样式,实现如下:
Css代码

a{
blr: expression(this.onFocus=this.close());
} /* 只支持IE,过多使用效率低 */
a{
blr: expression(this.onFocus=this.blur());
} /* 只支持IE,过多使用效率低 */
a:focus {
-moz-outline-style: none;
} /* IE不支持 */
:focus {
outline: none;
} /* for Firefox */

 

 


方法三:利用标签属性,仅支持IE,实现如下:Html代码


<a href="http://www.www.baidu.com" hidefocus="true">Web前端分享</a>

 

 

清除IE下链接虚线框

标签:style   blog   http   io   ar   os   使用   sp   java   

原文地址:http://www.cnblogs.com/xinlinux/p/4127242.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!