JavaScript 参考手册
Area host 属性
下面的例子可返回 "Venus" 区域的主机名和端口
源代码:
点击运行 »
<img src="/examples/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>金星区域的 hostname:port: <script> document.write(document.getElementById('venus').host); </script> </p> <p><b>注意:</b>如果没有指定端口部分的URL,或者是80(默认),一些浏览器将不会显示端口的部分。</p>
运行结果:
点击运行 »