代码如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<style type="text/css">
.hide-foucs {
/* Firefox样式 */
-moz-outline-style: none;
}
</style>
</head>
<body>
<a href="javascript:void(0)" hideFocus="true" class="hide-foucs">隐藏该链接的焦点</a>
</body>
</html>
在以上代码中,链接的属性hideFocus="true"适用于IE浏览器,class="hide-foucs"适用于Firefox浏览器。