源代碼
點擊運行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>教程</title> </head> <body> <img id="planets" src="/images/logo.png" width="145" height="126" usemap="#planetmap"> <map name="planetmap"> <area id="venus" shape="circle" coords="124,58,8" alt="The planet Venus" href="venus.htm"> </map> <p>usemap屬性的值: <script> document.write(document.getElementById("planets").useMap); </script> </p> </body> </html>
運行結果