Latest web development tutorials

HTML DOM Area href 屬性

Area 對象參考手冊 Area對象

定義和用法

href 屬性克設置或返回某區域href屬性的值。

href 屬性指定了某個區域的目標鏈接。

語法

areaObject.href=URL


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要瀏覽器都支持href 屬性


實例

實例

下面的例子可返回圖像映射中"Venus" 區域的href屬性:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>本教程(w3big.com)</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>金星的href属性值:
<script>
document.write(document.getElementById("venus").href);
</script>
</p>

</body>
</html>

以上實例輸出結果:

金星的href屬性值: http://www.w3big.com/try/demo_source/venus.htm

嘗試一下»


Area 對象參考手冊 Area對象