Thuộc tính enctype HTML <form>

❮ Thẻ <form> HTML

Thí dụ

Gửi dữ liệu biểu mẫu được mã hóa dưới dạng "nhiều phần / dữ liệu biểu mẫu":

<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>

Định nghĩa và Cách sử dụng

Thuộc enctypetính chỉ định cách dữ liệu biểu mẫu sẽ được mã hóa khi gửi đến máy chủ.

Lưu ý: Thuộc enctypetính chỉ có thể được sử dụng nếu method="post".


Hỗ trợ trình duyệt

Attribute
enctype Yes Yes Yes Yes Yes

Cú pháp

<form enctype="value">

Giá trị thuộc tính

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

❮ Thẻ <form> HTML