ข้อมูลอ้างอิง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 <input> formnctype Attribute

❮ แท็ก HTML <input>

ตัวอย่าง

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

<form action="/action_page_binary.asp" method="post">
  <label for="fname">First name:</label>
  <input type="text" id="fname" name="fname"><br><br>
  <input type="submit" value="Submit">
  <input type="submit" formenctype="multipart/form-data" value="Submit as Multipart/form-data">
</form>

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

แอตทริบิวต์formenctypeระบุว่าควรเข้ารหัสข้อมูลแบบฟอร์มอย่างไรเมื่อส่งไปยังเซิร์ฟเวอร์ (เฉพาะแบบฟอร์มที่มีmethod="post")

แอตทริบิวต์formenctypeแทนที่enctypeแอตทริบิวต์ของ <form>องค์ประกอบ

หมายเหตุ:คุณลักษณะformenctypeนี้ใช้กับ type="submit"และ type="image".


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

ตัวเลขในตารางระบุเบราว์เซอร์รุ่นแรกที่สนับสนุนแอตทริบิวต์อย่างเต็มที่

Attribute
formenctype Yes 10.0 Yes 5.1 10.6

ไวยากรณ์

<input formenctype="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 <input>