Html5之formenctype属性的简介:
Html5中,可以使用formenctype属性对表单元素分别指定不同的编码方式。
代码参考:
<!--三种方式-->
<input type="button" formenctype="text/plain">
<input type="button" formenctype="multipart/form-data">
<input type="button" formenctype="application/x-www-form-urlencoded">