Local control
<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>
Global control
CSS implementation
a{blr:expression(this.onFocus=this.close());} /* Only support IE, too much use is inefficient*/
a{blr:expression(this.onFocus=this.blur());} /* Only support IE, too much use is inefficient*/
a:focus { -moz-outline-style: none; } /* IE does not support */
HTC implements IE support, and the page will be effective only after it is loaded
Save the following code as a file with .htc as an extension
Sample code [www.CuoXIn.com]