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

HTML คุณสมบัติ href


แอตทริบิวต์ href ขององค์ประกอบ ตั้งค่า URL พื้นฐานสำหรับ URL ที่เกี่ยวข้องทั้งหมด ตัวอย่างเช่น URL ฐานเป็น https://example.com/tutorials สำหรับ URL ที่เกี่ยวข้องทั้งหมด เช่น /html, /java, /jquery เป็นต้น . ซึ่งในที่สุด −

https://example.com/tutorials/html
https://example.com/tutorials/java
https://example.com/tutorials/jquery

ต่อไปนี้เป็นไวยากรณ์ -

<base href="absolute_URL">

ด้านบน _URL แบบสัมบูรณ์คือ URL แบบสัมบูรณ์สำหรับ URL ฐาน ให้เราดูตัวอย่างการใช้แอตทริบิวต์ href ขององค์ประกอบ -

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<base href="https://www.example.com/tutorials/">
</head>
<body>
   <h2>Tutorials List</h2>
   <p><a href="java.html">Java Tutorial</a></p><p>(This will act as https://www.example.com/tutorials/java.html)</p>
   <p><a href="jquery.html">jQuery Tutorial</a></p><p>(This will act as https://www.example.com/tutorials/jquery.html)</p>
   <p><a href="blockchain.html">Blockchain Tutorial</a></p><p>(This will act as https://www.example.com/tutorials/blockchain.html)</p>
   <p><a href="python.html">Python Tutorial</a></p><p>(This will act as https://www.example.com/tutorials/python.html)</p>
</body>
</html>

ผลลัพธ์

HTML  base  คุณสมบัติ href

ในตัวอย่างข้างต้น เราได้ตั้งค่า URL พื้นฐานเป็น −

<base href="https://www.example.com/tutorials/">

หลังจากที่เราพูดถึงลิงก์ว่า "java.html " ซึ่งในที่สุดก็จะทำหน้าที่เป็น −

https://www.example.com/tutorials/java.html