局部控制
<a href="link1.htm" onfocus="this.blur()">link1</a>
<a href="link1.htm" onfocus="this.close()">link1</a>
<a href="link1.htm" hidefocus="true">link1</a>
<a href="link1.htm" hidefocus="hidefocus">link1</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支持,頁面載完才有效果
把下面這段代碼存為.htc為擴展名的文件
示例代碼[www.CuoXIn.com]