x
 
<!DOCTYPE html>
<html>
<body>
<object id="myObject" data="/i/html/planets.jpg" width="215" height="260" usemap="#planetmap"></object>
<map id="planetmap" name="planetmap">
  <area shape="rect" coords="0,0,110,260" alt="Sun" href="/demo/tags/sun.html">
  <area shape="circle" coords="129,161,10" alt="Mercury" href="/demo/tags/mercur.html">
  <area shape="circle" coords="180,139,14" alt="Venus" href="/demo/tags/venus.html">
</map>
<p><b>注释:</b>object 元素的 usemap 属性仅在 IE 和 Firefox 中受支持。</p>
<p>单击该按钮可显示与对象一起使用的图像映射的名称。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var x = document.getElementById("myObject").useMap;
  document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>