ข้อมูลอ้างอิงHTML

HTML โดยตัวอักษร HTML ตามหมวดหมู่ รองรับ HTML Browser แอตทริบิวต์ HTML HTML Global Attributes เหตุการณ์ HTML HTML สี HTML Canvas HTML เสียง/วิดีโอ ชุดอักขระ HTML HTML Doctypes การเข้ารหัส URL HTML รหัสภาษา HTML รหัสประเทศ HTML ข้อความ HTTP วิธี HTTP ตัวแปลง PX เป็น EM แป้นพิมพ์ลัด


HTML <a> แอตทริบิวต์เป้าหมาย

❮ แท็ก HTML <a>

ตัวอย่าง

แอตทริบิวต์เป้าหมายระบุตำแหน่งที่จะเปิดเอกสารที่เชื่อมโยง:

<a href="https://www.w3schools.com" target="_blank">Visit W3Schools</a>

ความหมายและการใช้งาน

แอตทริบิวต์targetระบุตำแหน่งที่จะเปิดเอกสารที่เชื่อมโยง


รองรับเบราว์เซอร์

Attribute
target Yes Yes Yes Yes Yes

ไวยากรณ์

<a target="_blank|_self|_parent|_top|framename">

ค่าแอตทริบิวต์

Value Description
_blank Opens the linked document in a new window or tab
_self Opens the linked document in the same frame as it was clicked (this is default)
_parent Opens the linked document in the parent frame
_top Opens the linked document in the full body of the window
framename Opens the linked document in the named iframe

❮ แท็ก HTML <a>