x
 
<!DOCTYPE html>
<html>
<body>
<img src="/i/html/planets.jpg" width="215" height="260" usemap="#planetmap">
<map name="planetmap">
  <area id="venus" shape="circle" coords="180,139,14" alt="Venus" href="/demo/tags/venus.html">
</map>
<p>单击该按钮可显示图像映射中 “venus” 区域的 href 属性的端口。</p>
<p><b>注释:</b>如果 URL 中没有指定端口部分,或者是 80(默认值),一些浏览器将只显示 0 或什么都不显示。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var x = document.getElementById("venus").port;
  document.getElementById("demo").innerHTML = "端口:" + x;
}
</script>
</body>
</html>