在這介紹幾種去除的方法:
直接給鏈接加是
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();
}
});