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... >
|
---|
Scripting | object.useMap [ = sURL ] |
---|
DHTML可能的值
sURL | String 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 and
is defined in
World Wide Web Consortium (W3C) Document Object Model (DOM) Level 1 .
Applies To