去掉 map area 在IE里点击时出现的框

在img标签里加上一个属性 hidefocus="true"

<img src="image.png" width="463" height="375" border="0" usemap="#Map" hidefocus="true" />

或者

在css里加上一句 .imgclass{outline:none}

其中.imgclass 是给作为map的img取的一个类名

.imgclass{
outline:none;
}
原文地址:https://www.cnblogs.com/youthdream/p/3185505.html