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

❮ แท็ก HTML <form>

ตัวอย่าง

ส่งแบบฟอร์มข้อมูลที่เข้ารหัสเป็น "หลายส่วน / รูปแบบข้อมูล":

<form action="/action_page_binary.asp" method="post" enctype="multipart/form-data">
  <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>

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

แอตทริบิวต์enctypeระบุว่าควรเข้ารหัสข้อมูลแบบฟอร์มอย่างไรเมื่อส่งไปยังเซิร์ฟเวอร์

หมายเหตุ:แอตทริบิวต์enctypeสามารถใช้ได้เฉพาะเมื่อ method="post".


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

Attribute
enctype Yes Yes Yes Yes Yes

ไวยากรณ์

<form enctype="value">

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

Value Description
application/x-www-form-urlencoded Default. All characters are encoded before sent (spaces are converted to "+" symbols, and special characters are converted to ASCII HEX values)
multipart/form-data  This value is necessary if the user will upload a file through the form
text/plain Sends data without any encoding at all. Not recommended

❮ แท็ก HTML <form>