方法一:利用javascript的onfocus事件,實現如下:
Html代碼
復制代碼 代碼如下:
<a href="http://www.jb51.net/" onfocus="this.blur();">設計蜂巢</a>
如果引入了jQuery框架則可以利用它的事件綁定機制:
Js代碼
復制代碼 代碼如下:
$('a').bind('focus', function(){
if(this.blur){ //如果支持 this.blur
this.blur();
}
});
方法二:利用css樣式,實現如下:
Css代碼
復制代碼 代碼如下:
a{
blr: expression(this.onFocus=this.close());
} /* 只支持IE,過多使用效率低 */
a{
blr: expression(this.onFocus=this.blur());
} /* 只支持IE,過多使用效率低 */
a:focus {
-moz-outline-style: none;
} /* IE不支持 */
:focus {
outline: none;
} /* for Firefox */
方法三:利用標簽屬性,僅支持IE,實現如下:Html代碼
復制代碼 代碼如下:
<a href="http://www.jb51.net/" hidefocus="true">設計蜂巢</a>
方法四:HTC 實現如下:
將一下代碼保存為.htc後綴的文件
Js代碼
復制代碼 代碼如下:
<public:attach event="onfocus" onevent="quit()" />
<script language="javascript">
function quit(){
this.blur();
}
</script>
CSS代碼
復制代碼 代碼如下:
a {behavior:url("htc文件")}