最新的Web开发教程
 

HTML href Attribute


定义和用法

对于<a><area>元素的href属性指定的页面的链接去的URL。

对于<base>元素的href属性指定页面上所有相对URL的基本URL。

对于<link>元素的href属性指定外部资源(最常见的是样式表文件)的位置(URL)。


适用于

href属性可以在下列元素一起使用:

分子 属性
<a> href
<area> href
<base> href
<link> href

例子

A实例

href属性指定链接的目标:

<a href="http://www.w3ii.com">Visit w3ii</a>
试一试»

Area为例

图像映射,可点击方面:

<img src="planets.gif" width="145" height="126" alt="Planets"
usemap="#planetmap">

<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun">
  <area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury">
  <area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus">
</map>
试一试»

Base示例

指定页面上所有相对URL基地网址:

<head>
<base href="http://www.w3ii.com/images/">
</head>
试一试»

Link示例

链接到外部样式表:

<link rel="stylesheet" type="text/css" href="theme.css">
试一试»

浏览器支持

href属性为每个元素以下浏览器支持:

元件
a
area
base
link