查找区域的 href 属性的域名部分

  1. <html>
  2. <body>
  3.  
  4. <img src="/i/eg_planets.jpg"
  5. usemap="#planetmap" />
  6.  
  7. <map name="planetmap">
  8. <area
  9. id="venus"
  10. shape="circle"
  11. coords="180,139,14"
  12. href ="/example/html/venus.html"
  13. alt="Venus" />
  14. </map>
  15.  
  16. <p>"Venus" 区域的 hostname 和 port 是:
  17. <script type="text/javascript">
  18. x=document.getElementById('venus');
  19. document.write(x.host);
  20. </script>
  21. </p>
  22.  
  23. </body>
  24. </html>