最新的Web開發教程
 

HTML DOM Area對象


Area對象

區域對象表示一個HTML <area>元素。

訪問的區域對象

可以訪問的<area>通過使用元素getElementById()

var x = document.getElementById("myArea");
試一試»

創建區域目標

可以創建<area>使用元素document. createElement() document. createElement()方法:

var x = document.createElement("AREA");
試一試»

區對象的屬性

屬性 描述
alt 設置或返回的值alt的區域屬性
coords 設置或返回的值coords的區域屬性
hash 設置或返回的錨部分href屬性值
host 設置或返回的主機名和端口部分href屬性值
hostname 設置或返回的主機名部分href屬性值
href 設置或返回的值href的區域屬性
noHref 在HTML5不支持。
設置或返回的值nohref一個區域的屬性
origin 返回的協議,主機名和端口部href屬性值
password 設置或返回的密碼部分href屬性值
pathname 設置或返回的路徑部分href屬性值
port 設置或返回的端口部分href屬性值
protocol 設置或返回的協議部分href屬性值
search 設置或返回的查詢字符串部分href屬性值
shape 設置或返回的值shape的區域的屬性
target 設置或返回的值target的區域的屬性
username 設置或返回的用戶名部分href屬性值

標準屬性和事件

區域對象也支持標準的屬性事件


相關頁面

HTML參考: HTML <area>標籤