几种点击连接时不出现虚边框的方法

来源:互联网 发布:软件qq音乐 编辑:程序博客网 时间:2024/06/05 17:20
1.使用JS

<script>function document.onclick(){if(event.srcElement.tagName=="A")event.srcElement.blur()}</script><a href=####>Testlink</a>


2.使用CSS

<style>a{dovia:expression(this.onfocus=this.blur);cursor:hand}</style><a href=####><img src=http://www.dovia.net/logo.gif border=0></img></a>


3.使用CSS

<a href=#### hidefocus=true style="cursor:hand"><img src=http://www.dovia.net/logo.gif border=0></img></a>


4.使用JS

<a href=# onfocus="blur()"><img src=http://www.dovia.net/logo.gif border=0></a>
原创粉丝点击