html – 图像映射不工作在IE

前端之家收集整理的这篇文章主要介绍了html – 图像映射不工作在IE前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的网站上有一个图像映射,它除了IE以外的所有功能都有效.

这是代码

<div id="content">
    <div style="text-align:center; width:302px; margin-left:auto; margin-right:auto;">
    <img id="alexpeteNav" src="nav.jpg" usemap="Aalexpetenav" border="0" width="302" height="274" alt="" />
    <map id="BalexpeteNav" name="AalexpeteNav">
    <area shape="rect" coords="0,297,72" href="http://doubleohnine.com/" alt="009" title="009" />
    <area shape="rect" coords="0,68,140" href="about.html" alt="About alexpete" title="About alexpete" />
    <area shape="rect" coords="0,139,211" href="https://plus.google.com/104897364451129767176" alt="Google+" title="Google+" />
    <area shape="rect" coords="0,209,269" href="http://www.facebook.com/alexpete" alt="Facebook" title="Facebook" />
    </map>
    </div> 
    </div>

有什么建议么?原因是什么?

该网站在线www.alexpete.com.

谢谢.

解决方法

usemap要求图像映射有效的 hash-name reference,即地图名称前面的#.

我猜其他的浏览器在这方面比较宽松.

猜你在找的HTML相关文章