Syntax
document.links[num].href
The href property contains the entire URL specified by the HREF attribute of the tag.
This property is a read/write string.
<html>
<body>
<form name="question">
<input name="carType"
type="radio"
checked
onClick="updateLinks('LAMBORGINI')">Lamborgini<br>
<input name="carType"
type="radio"
onClick="updateLinks('FERRARI')">Ferrari
</form>
<map name="java2sMap">
<area name="car"
coords="1,1,48,48"
href="http://www.java2s.com"
target="_top">
</map>
<img src="http://www.java2s.com/style/logo.png" align="top" height="50" width="50" usemap="#java2sMap">
<hr>
<script language="JavaScript">
<!--
function updateLinks(car)
{
if(car=="LAMBORGINI")
document.links[0].href="http://www.java2s.com";
if(car=="FERRARI")
document.links[0].href="http://www.java2s.com";
}
-->
</script>
</body>
</html>