Area alt 屬性
Area 對象定義和用法
alt 屬性返回可設置某個區(qū)域的 alt 屬性值。
alt 屬性可指定了當瀏覽器無法顯示某個區(qū)域時所顯示的替換文本。
語法
areaObject.alt=alternate_text
瀏覽器支持
所有主要瀏覽器都支持 alt 屬性
實例
實例
下面的例子可返回圖像映射中 "Venus" 區(qū)域的替換文本:
<!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="金星" href="venus.htm">
</map>
<p>金星的替代文本:
<script>
document.write(document.getElementById("venus").alt);
</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="金星" href="venus.htm">
</map>
<p>金星的替代文本:
<script>
document.write(document.getElementById("venus").alt);
</script>
</p>
</body>
</html>
以上實例輸出結果:
金星的替代文本: 金星
嘗試一下 ?
Area 對象
更多建議: