ข้อมูลอ้างอิง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 <พื้นที่> แอตทริบิวต์เป้าหมาย

❮ แท็ก HTML <พื้นที่>

ตัวอย่าง

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

<map name="planetmap">
<area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun" target="_blank">
<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>

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

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

ใช้เฉพาะเมื่อมีhrefแอตทริบิวต์อยู่


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

Attribute
target Yes Yes Yes Yes Yes

ไวยากรณ์

<area 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
_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 a named iframe

❮ แท็ก HTML <พื้นที่>