HTML DOM中的Area coords屬性用於設置或返回區域的coords屬性的值。它指定區域的x和y坐標。
用法:
- 它返回Area coords屬性。
areaObject.coords
- 它用於設置Area coords屬性。
areaObject.coords = value
屬性值:
- x1,y1,x2,y2:它指定矩形的左上角(x1,y1)和右下角(x2,y2)的坐標。
- x, y, radius:它指定圓的中心坐標(x,y)和半徑(半徑)。
- x1,y1,x2,y2,..,xn,yn:它指定多邊形的坐標。如果第一個和最後一個坐標對不相同,瀏覽器將添加最後一個坐標對以關閉多邊形。
返回值:它返回一個字符串值,該值表示以逗號分隔的坐標列表。
範例1:本示例返回Area coords屬性。
<!DOCTYPE html>
<html>
<title>
HTML DOM Area coords Property
</title>
<body>
<h4> HTML DOM Area coords Property </h4>
<button onclick="GFG()">Click Here!
</button>
<map name="Geeks1">
<area id="Geeks"
shape="rect"
coords="0, 0, 110, 100"
alt="Geeks"
</map>
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/a1-25.png"
width="300"
height="100"
alt="Geeksforgeeks"
usemap="#Geeks1">
</br>
<p id="GEEK!"></p>
<script>
function GFG() {
// Return coords property.
var x = document.getElementById("Geeks").coords;
document.getElementById("GEEK!").innerHTML = x;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
範例2:本示例設置Area坐標屬性。
<!DOCTYPE html>
<html>
<title>
HTML DOM Area coords Property
</title>
<body>
<h4> HTML DOM Area coords Property </h4>
<button onclick="GFG()">Click Here!
</button>
<map name="Geeks1">
<area id="Geeks"
shape="rect"
coords="0, 0, 110, 100"
alt="Geeks"
href=
https://manaschhabra:manaschhabra499@www.geeksforgeeks.org/
</map>
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/a1-25.png"
width="300"
height="100"
alt="Geeksforgeeks"
usemap="#Geeks1">
</br>
<p id="GEEK!"></p>
<script>
function GFG() {
// Sets coords property.
var x = document.getElementById("Geeks").coords =
"2, 2, 100, 100";
document.getElementById("GEEK!").innerHTML =
"The coords has been changed to " + x;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:
- 穀歌瀏覽器
- Firefox
- IE瀏覽器
- Opera
- Safari
相關用法
- HTML <area> coords屬性用法及代碼示例
- HTML coords屬性用法及代碼示例
- HTML Area alt用法及代碼示例
- HTML Area hash用法及代碼示例
- HTML Area host用法及代碼示例
- HTML Area shape用法及代碼示例
- HTML Area protocol用法及代碼示例
- HTML Area hostname用法及代碼示例
- HTML Area port用法及代碼示例
- HTML Area pathname用法及代碼示例
- HTML Area target用法及代碼示例
- HTML Area search用法及代碼示例
- HTML Area origin用法及代碼示例
- HTML Area username用法及代碼示例
- HTML Area password用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Area coords Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。