HTML5 formenctypea

formenctype 属性

该属性用于设置表单数据时的HTTPContent-Type,参考 - enctype 属性

<form enctype="application/x-www-form-urlencoded">

 <!-- 表单数据1 -->
 <!-- 表单数据N -->

 <!-- formenctype 属性 会覆盖 enctype 属性的设置 -->
 <!-- 当前表单提交的 Content-Type 类型是 multipart/form-data -->

 <button type="submit" formenctype="multipart/form-data">提交</button> 

</form>
更多教程 HTML5 教程 CSS3 教程 JavaScript 教程 JQuery 教程 React.js 教程 Node.js 教程 Koa2 教程 Python 教程 Linux 教程