Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

HTML <พื้นที่> คุณสมบัติ href


แอตทริบิวต์ href ขององค์ประกอบ กำหนดเป้าหมายไฮเปอร์ลิงก์ ต่อไปนี้เป็นไวยากรณ์ -

<area href="URL">

ด้านบน URL คือไฮเปอร์ลิงก์ที่คุณต้องพูดถึงสำหรับพื้นที่นั้น ซึ่งอาจเป็นลิงก์ที่เกี่ยวข้อง ลิงก์แบบสัมบูรณ์ สคริปต์ โปรโตคอล ฯลฯ

ให้เราดูตัวอย่างการใช้แอตทริบิวต์ href ขององค์ประกอบ -

ตัวอย่าง

<!DOCTYPE html>
<html>
<body>
<h2>Learning</h2>
<p>Learn these technologies with ease....</p>
<img src = /images/usemap.gif alt = "usemap" border = "0" usemap = "#tutorials"/>
<map name = "tutorials">
   <area shape = "poly" coords = "74,0,113,29,98,72,52,72,38,27"
      href = "/perl/index.htm" alt = "Perl Tutorial" target = "_blank" />
   <area shape = "rect" coords = "22,83,126,125" alt = "HTML Tutorial"
      href = "/html/index.htm" target = "_blank" />
   <area shape = "circle" coords = "73,168,32" alt = "PHP Tutorial"
      href = "/php/index.htm" target = "_blank" />
</map>
</body>
</html>

ผลลัพธ์

HTML  พื้นที่  คุณสมบัติ href

ในตัวอย่างข้างต้น เราได้ตั้งค่าแผนที่ในภาพต่อไปนี้ -

<img src = /images/usemap.gif alt = "usemap" border = "0" usemap = "#tutorials"/>

ตอนนี้ เราได้ตั้งค่าแผนที่และพื้นที่ภายในสำหรับรูปร่างแล้ว -

<map name = "tutorials">
   <area shape = "poly" coords = "74,0,113,29,98,72,52,72,38,27"
      href = "/perl/index.htm" alt = "Perl Tutorial" target = "_blank" />
   <area shape = "rect" coords = "22,83,126,125" alt = "HTML Tutorial"
      href = "/html/index.htm" target = "_blank" />
   <area shape = "circle" coords = "73,168,32" alt = "PHP Tutorial"
      href = "/php/index.htm" target = "_blank" />
</map>

ไฮเปอร์ลิงก์สำหรับพื้นที่ด้านบนถูกกำหนดโดยใช้แอตทริบิวต์ href -

href = "/php/index.htm