当前位置: 首页 > 网络学院 > 网页制作基础教程 > WEB设计综合 > 点击连接时不出现虚边框的方法
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>