方法一:
復制代碼
代碼如下:
<a onfocus=this.blur() href="javascript:void(0)" class="l-button" style="width:80px" onclick='log_1()'>
<img id="img_a" border=0 align="middle" src="login_image/a_1.jpg" alt="沒有圖片!"> </img>
</a>
復制代碼
代碼如下:
onfocus=this.blur()
增加這個,可以去掉!
方法二:
1.把一下代碼存成一個1.htc的文件
復制代碼
代碼如下:
<public:attach event="onfocus" onevent="example()" />
<script language="javascript">
function example(){
this.blur();
}
</script>
2.在你的html文件head中加入以下代碼,這樣所有的連接都沒虛線了
復制代碼
代碼如下:
<style>
a {behavior:url(1.htc)}
area {behavior:url(1.htc)}
</style>