HTML DOM href 属性
定义和用法
href 属性可设置或返回图像映射中链接的 URL。
语法
areaObject.href=URL
实例
下面的例子讲更改图像映射中某个区域的链接:
<html>
<head>
<script type="text/javascript">
function changeLink()
{
document.getElementById('venus').href="http://www.w3c0.com"
}
</script>
</head>
<body>
<img src="planets.gif"
width="145" height="126"
usemap="#planetmap" />
<map name="planetmap">
<area id="venus" shape="circle"
coords="124,58,8"
alt="Venus"
href="venus.htm" />
</map>
<input type="button" onclick="changeLink()" value="Change link" />
</body>
</html>