HBCMS更多的中文手册参考:

USEMAP Attribute | useMap参数属性

DHTML文档教程

Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.

What's New for Microsoft® Internet Explorer 6

This property now applies to the object and input objects.

dhtml语法

HTML<ELEMENT USEMAP = sURL... >
Scriptingobject.useMap [ = sURL ]

DHTML可能的值

sURLString that specifies or receives the URL of the image map.

The property is read/write. The property has no default value.

Expressions can be used in place of the preceding value(s), as of Microsoft® Internet Explorer 5. For more information, see about dynamic properties.

remarks

the usemap property identifies the image as a client-side image map by associating a map object with the image. this map object contains area objects that define regions within the image. the user can click these regions to navigate to a designated url.

you can dynamically assign the maps to the image through the usemap property.

DHTML代码范例

This example specifies map1 as the image map underlying image.gif. The map can be changed to another map, map2, by clicking the button.

<MAP NAME="map1">
<AREA NAME="area1" COORDS="0,0,40,40" href="doc1.htm"
TARGET="frame1">
<AREA NAME="area2" COORDS="40,0,80,40" href="doc2.htm"
TARGET="frame1">
<AREA NAME="area3" COORDS="10,40,40,80" href="doc3.htm"
TARGET="frame1">
<AREA NAME="area4" COORDS="40,40,80,80" href="doc4.htm"
TARGET="frame1">
</MAP>
:
<IMG USEMAP="#map1" ID=idImg SRC="image.gif">
:
<BUTTON onclick="idImg.useMap='#map2'">
Change Maps</BUTTON>

是否符合公共标准

This property is defined in HTML 3.2 Non-Microsoft link and is defined in World Wide Web Consortium (W3C) Document Object Model (DOM) Level 1 Non-Microsoft link.

Applies To

IMG, OBJECT, INPUT