Q:怎样让图片上的热点链接在点中后不显示虚线框?
A:在链接的属性中加上onFocus="this.blur()",例如:
<a href="http://www.windstudio.net" onFocus="this.blur()">有风的日子</a>
同样适用于图片上的热点链接,例如:
<map name="Map">
<area shape="rect" coords="364,31,517,64" href="http://www.windstudio.net" onFocus="this.blur()">
</map>