最新的Web開發教程
 

圖片ISMAP屬性

圖像對象參考 圖像對象

查找出來,如果圖像是一個服務器端的圖像映射的一部分:

var x = document.getElementById("myImg").isMap;

x的結果將是:

true
試一試»

定義和用法

該ISMAP屬性設置或返回圖像是否應該是一個服務器端的圖像映射的一部分(圖像映射是帶有可點擊區域的圖像),還是不行。

當一個服務器端圖像地圖上點擊,點擊的坐標被發送到服務器的URL的查詢串。

該屬性反映了HTML ISMAP屬性。

注: ismap如果屬性只允許<img>元素是一個的後代<a>元素和有效的href屬性。


瀏覽器支持

屬性
isMap

句法

返回ISMAP屬性:

imageObject .isMap

設置ISMAP屬性:

imageObject .isMap=true|false

屬性值

Value Description
true|false Specifies whether the image should be part of a server-side image-map, or not
  • true - The image will be part of a server-side image-map
  • false -The image will NOT be part of a server-side image-map

技術細節

返回值: 布爾值,如果該圖像是一個服務器端的圖像映射的一部分返回true,否則返回false

更多示例

設置ISMAP屬性:

document.getElementById("myImg").isMap = true;
試一試»

相關頁面

HTML參考: HTML <img> ISMAP屬性


圖像對象參考 圖像對象