请问<IMG src="../images/index/adduser.gif" width="184" useMap="#Map" border="0">这一句里的useMap="#Map"是什么意思?谢啦!!

解决方案 »

  1.   

    http://www.cnool.net/tianyige/computer/html/map.html
    有详细信息
      

  2.   

    USEMAP Attribute | useMap PropertySets or retrieves the URL, often with a book extension (#name), to use as a client-side image map. SyntaxHTML <IMG USEMAP = sURL ... >  
    Scripting img.useMap [ = sURL ]  Possible ValuessURL String that specifies the URL of the image map. The property is read/write with no default value. Expressions can be used in place of the preceding value(s), as of Microsoft&reg; Internet Explorer 5. For more information, see Dynamic Properties.ResThe 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.ExampleThis example specifies map1 as the image map underlying image.gif. The map can be changed to another map, map2, by clicking the button.Sample Code<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>
      

  3.   

    就是指图片的某一区域 定义为名“#Map"的热区
      

  4.   

    useMap="#Map"
    映射,这样可以给图片做链接之类的东西.
      

  5.   

    嗯,有这么多人回答我,太好了!!! 
    honglin119(枫叶飘零)给的网址上讲得非常清楚了,加上大家的说明,我已经能明白了我问题的答案了,谢谢大家!还有点舍不得结贴呢!!!