代码编辑器:
x
1
<img src="/static/i/img1.jpg" width="145" height="126" alt="Planets" usemap="#planetmap">
2
<map name="planetmap">
3
<area shape="rect" coords="0,0,82,126" alt="Sun" href="/static/i/html/sun.html">
4
<area shape="circle" coords="90,58,3" alt="Mercury" href="/static/i/html/sun2.html">
5
<area shape="circle" coords="124,58,8" alt="Venus" href="/static/i/html/sun2.html">
6
</map>
7
<p>点击按钮修改图像地图的名称</p>
8
<p id="demo"></p>
9
<button onclick="myFunction()">点我</button>
10
<script>
11
function myFunction(){
12
document.getElementById("planetmap").name = "newMapName";
13
document.getElementById("demo").innerHTML = "name 属性的值从 'planetmap' 改为 'newMapName'.";
14
}
15
</script>
16