IE去掉链接虚线框的几个方法

转载自:http://www.hujuntao.com/archives/ie-remove-the-link-to-the-dotted-rectangle-several-ways.html

虚线框简直就是个多余的东西,上一篇教大家怎么去除Firefox中链接和按钮虚线框,今天叫大家去掉去除IE中链接的虚线框。
方法一:利用javascript的onfocus事件,实现如下:
Html代码

 
 
  1. <a href="http://www.hujuntao.com/" onfocus="this.blur();">设计蜂巢</a>

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

Js代码

 
 
  1. $('a').bind('focus', function(){
  2. if(this.blur){ //如果支持 this.blur
  3. this.blur();
  4. }
  5. });

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

 
 
  1. Css代码
  2. a{
  3. blr: expression(this.onFocus=this.close());
  4. } /* 只支持IE,过多使用效率低 */
  5. a{
  6. blr: expression(this.onFocus=this.blur());
  7. } /* 只支持IE,过多使用效率低 */
  8. a:focus {
  9. -moz-outline-style: none;
  10. } /* IE不支持 */
  11. :focus {
  12. outline: none;
  13. } /* for Firefox */

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

Html代码

 
 
  1. <a href="http://www.hujuntao.com/" hidefocus="true">设计蜂巢</a>

方法四:HTC 实现如下:
将一下代码保存为.htc后缀的文件

Js代码

 
 
  1. <public:attach event="onfocus" onevent="quit()" />
  2. <script language="javascript">
  3. function quit(){
  4. this.blur();
  5. }
  6. </script>

CSS代码

 
 
  1. a {behavior:url("htc文件")}

转载于:https://www.cnblogs.com/hutaoer/archive/2012/10/24/3078886.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值