导航
×
   ❮   
HTML CSS JavaScript PHP Go Sass W3C Colors ECMS

HTML 参考手册

HTML 元素(功能排序) HTML 浏览器支持 HTML 属性 HTML 全局属性 HTML 事件 HTML 颜色 HTML 画布 HTML 音频/视频 HTML 字符集 HTML 文档类型 HTML URL 编码 HTML 语言代码 HTML 国家代码 HTTP 状态消息 HTTP 请求方法 PX-EM 转换 键盘快捷键

HTML 标签

<!--> <!DOCTYPE> <a> <abbr> <acronym> <address> <applet> <area> <article> <aside> <audio> <b> <base> <basefont> <bdi> <bdo> <big> <blockquote> <body> <br> <button> <canvas> <caption> <center> <cite> <code> <col> <colgroup> <data> <datalist> <dd> <del> <details> <dfn> <dialog> <dir> <div> <dl> <dt> <em> <embed> <fieldset> <figcaption> <figure> <font> <footer> <form> <frame> <frameset> <h1> - <h6> <head> <header> <hr> <html> <i> <iframe> <img> <input> <ins> <kbd> <label> <legend> <li> <link> <main> <map> <mark> <meta> <meter> <nav> <noframes> <noscript> <object> <ol> <optgroup> <option> <output> <p> <param> <picture> <pre> <progress> <q> <rp> <rt> <ruby> <s> <samp> <script> <section> <select> <small> <source> <span> <strike> <strong> <style> <sub> <summary> <sup> <svg> <table> <tbody> <td> <template> <textarea> <tfoot> <th> <thead> <time> <title> <tr> <track> <tt> <u> <ul> <var> <video> <wbr>

HTML <area> href 属性


实例

带有可点击区域的图像映射:

<map name="planetmap">
     <area shape="rect" coords="0,0,82,126" href="sun.htm" alt="太阳">
     <area shape="circle" coords="90,58,3" href="mercur.htm" alt="水星">
     <area shape="circle" coords="124,58,8" href="venus.htm" alt="金星">
</map>  
亲自试一试 »

定义和用法

href 属性规定区域中连接的目标。

如果 href 属性不存在,则<area> 标签不是超链接。


浏览器支持

属性          
href Yes Yes Yes Yes Yes

语法

<area href="URL">

属性值

描述
URL 指定区域的超链接目标。

可能的值:

  • 绝对 URL - 指向另一个网站 ( 比如 href="http://www.example.com/sun.htm")
  • 相对 URL - 指向网站中的文件 ( 比如 href="sun.htm")
  • 链接到页面中具有指定 id 的元素 ( 比如 href="#top")
  • 其他协议 ( 比如 https://, ftp://, mailto:, file:, etc..)
  • 脚本 ( 比如 href="javascript:alert('Hello');")

Copyright ©2020-2026 freew3c.com All Rights Reserved 提供的内容仅用于学习和测试,不保证内容的正确性。