<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>CSS隐藏鼠标点击焦点框</title> <style type="text/css"> a{ color:#39C; text-decoration:none; outline: none; /* firefox */hide-focus: expression(this.hideFocus = true); /* ie */ } a:hover{ text-decoration:none;} </style> </head> <body> <a href="http://www.baidu.com" target="_blank">百度一下</a> </body> </html>
ps:样式中加这个expression(this.hideFocus = true)会影响速度