Area protocol 屬性
Area 對象定義和用法
protocol 屬性可設置或者返回 href屬性值的協(xié)議部分。
語法
areaObject.protocol=protocol
瀏覽器支持
所有主要瀏覽器都支持 protocol 屬性
實例
實例
下面的例子可返回 "Venus" 區(qū)域中的協(xié)議:
<!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">
</map>
<p>金星區(qū)域的 protocol:
<script>
document.write(document.getElementById('venus').protocol);
</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">
</map>
<p>金星區(qū)域的 protocol:
<script>
document.write(document.getElementById('venus').protocol);
</script>
</p>
</body>
</html>
以上實例輸出結(jié)果:
金星區(qū)域的 protocol: http:
嘗試一下 ?
Area 對象
更多建議: