当前位置: 首页 > 网络学院 > 客户端脚本教程 > HTML DOM > HTML DOM pathname属性
The pathname property sets or returns the pathname of the link-URL in an area.
pathname属性可设置或返回area中连接URL的路径名称。
areaObject.pathname=pathname |
The following example returns the pathname of the link-URL in the "Venus" area:
返回"Venus"区域连接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> |
Get the pathname of the link-URL of an area in an image-map
得到热点地图中link-URL的路径名称