目录

HTML DOM map 对象


地图对象

Map 对象代表一个 HTML <map> 元素。

访问地图对象

您可以使用 getElementById() 访问 <map> 元素:

示例

var x = document.getElementById("myMap");
亲自试一试 »

创建地图对象

您可以使用 document.createElement() 方法创建 <map> 元素:

示例

var x = document.createElement("MAP");
亲自试一试 »

地图对象集合

Collection Description
areas Returns a collection of all <area> elements in an image-map
images Returns a collection of all <img> and <object> elements associated with the image-map

地图对象属性

Property Description
name Sets or returns the value of the name attribute of an image-map

标准属性和事件

Map 对象还支持标准特性事件


相关页面

HTML DOM 参考:区域对象

HTML 参考:HTML <地图> 标签

HTML 参考:HTML <区域> 标签