search
Area search 属性
定义和用法
search 属性设置或者返回 href 属性值的查询字符串部分。
语法
areaObject.search=querystring
浏览器支持
所有主要浏览器都支持 search 属性
实例
下面的例子可返回 "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?id=venus">
</map>
<p>The querystring part for the "Venus" area is:
<script>
document.write(document.getElementById(‘venus‘).search);
</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?id=venus">
</map>
<p>The querystring part for the "Venus" area is:
<script>
document.write(document.getElementById(‘venus‘).search);
</script>
</p>
</body>
</html>
以上实例输出结果:
The querystring part for the "Venus" area is: ?id=venus