HTML5 form enctype 属性

enctype 属性

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

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

<!-- application/x-www-form-urlencoded 是默认属性,用于提交普通表单 -->
<!-- multipart/form-data 数据用流的方式传输,通常表单有附带上传文件时,采用这种方式 -->

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