使用 target 属性指定在图像映射中打开链接文档的位置:
<img src="../assets/workplace.jpg" alt="Workplace" usemap="#workmap" width="400" height="379"> <map name="workmap"> <area target="_blank" shape="rect" coords="34,44,270,350" alt="Computer" href="a.html"> <area target="_blank" shape="rect" coords="290,172,333,250" alt="Phone" href="abbr.html"> <area target="_blank" shape="circle" coords="337,300,44" alt="Cup of coffee" href="address.html"> </map>
target
属性指定打开链接文档的位置。
仅在存在 href
属性时使用。
属性 | |||||
---|---|---|---|---|---|
target | Yes | Yes | Yes | Yes | Yes |
<area target="_blank|_self|_parent|_top|framename">
值 Value | 描述 Description |
---|---|
_blank | 在新窗口或选项卡中打开链接的文档 |
_self | 在单击时在同一框架中打开链接的文档 |
_parent | 在父框架中打开链接的文档 |
_top | 在整个窗口中打开链接的文档 |
framename | 在命名的 iframe 中打开链接的文档 |