Najnowsze tutoriale tworzenie stron internetowych
 

HTML <area> href Attribute

<HTML <area> tag

Przykład

Obraz-map, z obszarami klikalne:

<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>
Spróbuj sam "

Definicja i Wykorzystanie

href atrybut określa cel hiperłącza dla danego obszaru.

Jeśli href atrybut nie jest obecny, <area> tag nie jest hiperłącze.


Pomoc Browser

Atrybut
href Yes Yes Yes Yes Yes

Różnice między HTML 4.01 i HTML5

W HTML5, jeżeli <area> tag ma href atrybutu, to symbol zastępczy hiperłącze.


Składnia

<area href="URL">

wartości atrybutów

Wartość Opis
URL Określa cel hiperłącza dla danego obszaru.

Możliwe wartości:

  • Absolutną URL - wskazuje na innej stronie internetowej (jak href="http://www.example.com/sun.htm" )
  • Względny URL - punkty do pliku w obrębie strony internetowej (np href="sun.htm" )
  • Link do elementu o podanym id w obrębie strony (jak href="#top" )
  • Inne protokoły (jak https://, ftp://, mailto:, file: , itp ..)
  • Skrypt (jak href="javascript:alert('Hello');" )

<HTML <area> tag