แอตทริบิวต์ rel ขององค์ประกอบ ใช้เพื่อกำหนดความสัมพันธ์ระหว่างเอกสารปัจจุบันและเอกสารที่เชื่อมโยง คุณลักษณะนี้นำมาใช้ใน HTML5 สำหรับองค์ประกอบ
ต่อไปนี้เป็นไวยากรณ์ -
<area rel="value">
ด้านบน ค่าอาจเป็นตัวเลือกใดๆ ต่อไปนี้ที่เชื่อมโยงไปยัง −
- ทางเลือก :เอกสารเวอร์ชันอื่น เช่น การพิมพ์
- ผู้เขียน :ผู้เขียนเอกสาร
- บุ๊กมาร์ก :URL ถาวรที่ใช้สำหรับบุ๊กมาร์ก
- ช่วย :เอกสารช่วยเหลือ
- ใบอนุญาต :ข้อมูลลิขสิทธิ์
- ต่อไป :เอกสารถัดไปในส่วนที่เลือก
- ไม่ติดตาม: ลิงก์ไปยังลิงก์ที่คุณไม่ต้องการให้การจัดทำดัชนีของ Google ติดตามลิงก์นั้น
- ผู้อ้างอิง :ระบุว่าเบราว์เซอร์ไม่ควรส่งส่วนหัวอ้างอิง HTTP หากผู้ใช้ติดตามไฮเปอร์ลิงก์
- ดึงข้อมูลล่วงหน้า :ระบุว่าเอกสารเป้าหมายควรถูกแคช
- ก่อนหน้า :เอกสารก่อนหน้าในส่วนที่เลือก
- ค้นหา :ลิงค์ไปยังเครื่องมือค้นหาเอกสาร
- แท็ก: แท็กสำหรับเอกสารปัจจุบัน
ให้เราดูตัวอย่างการใช้แอตทริบิวต์ rel ขององค์ประกอบ -
ตัวอย่าง
<!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" rel="alternate"/> <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>
ผลลัพธ์
ในตัวอย่างข้างต้น เราได้ตั้งค่าแผนที่ในภาพต่อไปนี้ -
<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" rel="alternate"/> <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>
ด้านบน เราได้กำหนดความสัมพันธ์สำหรับรุ่นอื่น -
rel="alternate"