如何去掉图片点击后的超级链接产生的虚框问题
方法一:
代码如下:
<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>
本文网址:https://www.dedexuexi.com/divcss/jc/1403.html
本站部分文章搜集与网络,如有侵权请联系本站,转载请说明出处。
标签:技巧