查找区域的 href 属性的查询字符串部分

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <img src="/i/eg_planets.gif"
  6. width="145" height="126"
  7. usemap="#planetmap" />
  8.  
  9. <map name="planetmap">
  10. <area id="venus" shape="circle"
  11. coords="124,58,8"
  12. alt="Venus"
  13. href="/example/hdom/venus.html?id=venus" />
  14. </map>
  15.  
  16. <p>单击按钮以显示“venus”区域的 href 属性的查询字符串部分。</p>
  17.  
  18. <button onclick="myFunction()">试一试</button>
  19.  
  20. <p id="demo"></p>
  21.  
  22. <script>
  23. function myFunction() {
  24. var x = document.getElementById("venus").search;
  25. document.getElementById("demo").innerHTML = x;
  26. }
  27. </script>
  28.  
  29. </body>
  30. </html>