Image useMap 屬性
Image 對象定義和用法
useMap 屬性可設(shè)置或者返回圖片的 usemap 屬性的值。
usemap 屬性指定了一個圖片的客戶端圖像映射 (一個可點(diǎn)擊區(qū)域的圖片映射)。
usemap屬性與map元素名稱的屬性相關(guān),兩者可以 創(chuàng)建圖像和地圖之間的關(guān)聯(lián)。
語法
imageObject.useMap=value
useMap 屬性可以是以下值:
值 | 描述 |
---|---|
#mapname | 一個哈希字符("#")加上map元素的名稱 |
瀏覽器支持
所有主要瀏覽器都支持 useMap 屬性
實(shí)例
實(shí)例
返回客戶端圖片映射的usemap屬性值:
<html>
<body>
<img id="planets" src="planets.gif"
width="145" height="126"
usemap="#planetmap">
<map name="planetmap">
<area id="venus" shape="circle"
coords="124,58,8"
alt="The planet Venus"
href="venus.htm">
</map>
<p>The value of the usemap attribute is:
<script>
document.write(document.getElementById("planets").useMap);
</script>
</p>
</body>
</html>
<body>
<img id="planets" src="planets.gif"
width="145" height="126"
usemap="#planetmap">
<map name="planetmap">
<area id="venus" shape="circle"
coords="124,58,8"
alt="The planet Venus"
href="venus.htm">
</map>
<p>The value of the usemap attribute is:
<script>
document.write(document.getElementById("planets").useMap);
</script>
</p>
</body>
</html>
嘗試一下 ?
Image 對象
更多建議: