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

❮ แท็ก HTML <form>

ตัวอย่าง

แสดงคำตอบที่ได้รับในหน้าต่างหรือแท็บใหม่:

<form action="/action_page.php" method="get" target="_blank">
  <label for="fname">First name:</label>
  <input type="text" id="fname" name="fname"><br><br>
  <label for="lname">Last name:</label>
  <input type="text" id="lname" name="lname"><br><br>
  <input type="submit" value="Submit">
</form>

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

แอตทริบิวต์targetระบุชื่อหรือคีย์เวิร์ดที่ระบุตำแหน่งที่จะแสดงคำตอบที่ได้รับหลังจากส่งแบบฟอร์ม

แอตทริบิวต์targetกำหนดชื่อหรือคำหลักสำหรับบริบทการสืบค้น (เช่น แท็บ หน้าต่าง หรือเฟรมอินไลน์)


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

Attribute
target Yes Yes Yes Yes Yes

ไวยากรณ์

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

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

Value Description
_blank The response is displayed in a new window or tab
_self The response is displayed in the same frame (this is default)
_parent The response is displayed in the parent frame
_top The response is displayed in the full body of the window
framename The response is displayed in a named iframe

❮ แท็ก HTML <form>