html form 的属性

创建日期: 2024-04-06 17:31 | 作者: 风波 | 浏览次数: 16 | 分类: 前端

来源:https://www.w3schools.com/tags/att_form_enctype.asp

<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:form 提交时的 header type

Definition and Usage

The enctype attribute specifies how the form-data should be encoded when submitting it to the server.

Note: The enctype attribute can be used only if method="post".

<form enctype="value">
16 浏览
0 评论