最新的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