Area pathname 屬性
Area 對象定義和用法
pathname 屬性可設(shè)置或返回href屬性值中的路徑名部分。
語法
areaObject.pathname=path
瀏覽器支持
所有主要瀏覽器都支持 pathname 屬性
提示和注釋
注意:在以下實例中, IE 和 Opera 返回 "jsref/venus.htm", 但是 Firefox, Chrome, 和 Safari 返回 "/jsref/venus.htm".
實例
實例
下面的例子可返回 "Venus" 區(qū)域中href屬性值中的路徑名:
<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 area's pathname:
<script>
document.write(document.getElementById('venus').pathname);
</script>
</p>
</body>
</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 area's pathname:
<script>
document.write(document.getElementById('venus').pathname);
</script>
</p>
</body>
</html>
以上實例輸出結(jié)果:
Venus area's pathname: jsref/venus.htm
嘗試一下 ?
Area 對象
更多建議: