Area search 屬性
Area 對象定義和用法
search 屬性設(shè)置或者返回 href 屬性值的查詢字符串部分。
語法
areaObject.search=querystring
瀏覽器支持
所有主要瀏覽器都支持 search 屬性
實例
實例
下面的例子可返回 "Venus" 中的 link-URL 的查詢字符串部分:/p>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool教程(w3cschool.cn)</title>
</head>
<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>金星區(qū)域的查詢字符串部分:
<script>
document.write(document.getElementById('venus').search);
</script>
</p>
</body>
</html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool教程(w3cschool.cn)</title>
</head>
<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>金星區(qū)域的查詢字符串部分:
<script>
document.write(document.getElementById('venus').search);
</script>
</p>
</body>
</html>
以上實例輸出結(jié)果:
金星區(qū)域的查詢字符串部分: ?id=venus
嘗試一下 ?
Area 對象
更多建議: