BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>BootWiki 教程网</title> </head> <body> <img alt="Planets" height="126" src="planets.gif" usemap="#planetmap" width="145"> <map id="planetmap" name="planetmap"> <area alt="Sun" coords="0,0,82,126" href="sun.htm" shape="rect"> <area alt="Mercury" coords="90,58,3" href="mercur.htm" shape="circle"> <area alt="Venus" coords="124,58,8" href="venus.htm" shape="circle"> </map> <p>点击按钮获取图像地图的名称。</p> <p id="demo"></p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ var x = document.getElementById("planetmap").name; document.getElementById("demo").innerHTML = x; } </script> </body> </html>
运行结果