HTML DOM pathname ÊôÐÔ
¶¨ÒåºÍÓ÷¨
pathname ÊôÐÔ¿ÉÉèÖûò·µ»ØÄ³¸öÇøÓòÖÐ link-URL µÄ·¾¶Ãû¡£
Óï·¨
areaObject.pathname=pathnamee
ʵÀý
ÏÂÃæµÄÀý×Ó¿É·µ»Ø "Venus" ÇøÓòÖÐ link-URL µÄ·¾¶Ãû£º
<html>
<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>
<p>Venus' pathname:
<script type="text/javascript">
x=document.getElementById('venus');
document.write(x.pathname
);
</script>
</p>
</body>
</html>