DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> WEB網站前端 >> 前端技巧 >> 去掉點擊鏈接時出現的虛線框的幾個方法
去掉點擊鏈接時出現的虛線框的幾個方法
編輯:前端技巧     
在這介紹幾種去除的方法:

直接給鏈接加是
onfocus=”this.blur()”.
<a href="#" onfocus="this.blur()">鏈接</a>

CSS實現

復制代碼代碼如下:
a{blr:expression(this.onFocus=this.close());} /* 只支持IE,過多使用效率低 */
a{blr:expression(this.onFocus=this.blur());} /* 只支持IE,過多使用效率低 */
a:focus { -moz-outline-style: none; } /* IE不支持 */

htc實現IE支持

復制代碼代碼如下:
<public:attach event="onfocus" onevent="hscfsy()"/>
<script language="javascript">
function hscfsy(){
this.blur();
}
</script>

調用 a {behavior:url(htc文件所在路徑地址)}

通過JavaScript遍歷實現

復制代碼代碼如下:
window.onload=function()
{
for(var ii=0; ii document.links$[$ii$]$.onfocus=function(){this.blur()}
}

5.對WordPress可以用內部的JQuery框架來去除

復制代碼代碼如下:
$("a").bind("focus",function(){
if(this.blur){ //如果支持 this.blur
this.blur();
}
});
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved