搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
HTML参考手册
HTML 属性
源代码
清空
点击运行
<!doctype html> <html> <head> <title>html: <a> coords属性的使用 - 基础教程(div.cn)</title> </head> <body> <p>点击图片中的太阳或附近的行星:</p> <object data="planets.gif" alt="Planets" type="image/gif" usemap="#Map1"> <map name="Map1"> <a href="sun.html" shape="rect" coords="0,0,82,126">太阳</a> <a href="mercur.html"shape="circle" coords="90,58,3">水星</a> <a href="venus.html" shape="circle" coords="124,58,8">金星</a> </map> </object> <p><b>注意:</b> 目前只有 Firefox 和 Opera 浏览器支持 coords 属性。</p> </body> </html>
运行结果