去除ie6/7 and ff下超链接虚线框的解决办法

  1.  针对ie:a {star:expression(this.onFocus=this.blur());}
  2. 针对ff:a:focus {outline:0;}
  3. 使用link.htc:  将<public:attach event="onfocus" onevent="hscfsy()"/>
    <script language="javascript">
    function hscfsy(){
    alert("sss");
    this.blur();
    }
    </script> 另存为link.htc,添加样式 a{behavior:url(line.htc);
    }----------此方法我尝试未成功,不知道原因,有知道的朋友请不吝告知。

你可能感兴趣的:(IE,url,behavior)