所属分类:web前端开发
<!DOCTYPE html> <html> <body> <img id = "myid" src = "/images/html.gif" alt = "HTML Map" usemap = "#html"/> <map name = "html"> <area id = "myarea" shape = "circle" coords = "154,150,59" href = "about.htm" alt = "Team" > </map> <script> var x = document.getElementById("myid").useMap; document.write("<br>Usemap: "+x); </script> </body> </html>