target 属性可设置或返回在何处打开区域中的 link-URL。
</>code
- areaObject.target=_blank|_parent|_self|_top
四个保留的目标名称:
The following example changes the target of the link in the image-map:
</>code
- <html>
- <head>
- <script type="text/javascript">
- function changeTarget()
- {
document.getElementById('venus').target="_blank"
- }
- </script>
- </head>
- <body>
- <img src ="planets.gif"
- width="145" height="126"
- alt="Planets"
- usemap ="#planetmap" />
- <map name ="planetmap">
- <area shape ="circle" coords ="124,58,8"
- href ="venus.htm" id="venus" />
- </map>
- <br />
- <input type="button" onclick="changeTarget()"
- value="Change target" />
- </body>
- </html>
如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛
Powered by 365建站网 RSS地图 HTML地图
copyright © 2013-2024 版权所有 鄂ICP备17013400号