Area alt 屬性
Area 對(duì)象定義和用法
alt 屬性返回可設(shè)置某個(gè)區(qū)域的 alt 屬性值。
alt 屬性可指定了當(dāng)瀏覽器無法顯示某個(gè)區(qū)域時(shí)所顯示的替換文本。
語法
areaObject.alt=alternate_text
瀏覽器支持
所有主要瀏覽器都支持 alt 屬性
實(shí)例
實(shí)例
下面的例子可返回圖像映射中 "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>
以上實(shí)例輸出結(jié)果:
金星的替代文本: 金星
嘗試一下 ?
Area 對(duì)象
更多建議: