HTML button formenctype 属性

知更鸟的死因

HTML <button> formenctype 属性

带有两个提交按钮的表单(带有不同的编码方式),第一个提交按钮使用默认字符编码提交表单数据,第二个提交按钮不使用字符编码提交表单数据:

<form action="demo_post_enctype.asp" method="post">
Name: <input type="text" name="fname" value="Ståle Refsnes"><br>
<button type="submit" >使用编码提交</button>
<button type="submit" formenctype="text/plain">不使用编码提交</button>
</form>


浏览器支持

HTML button formenctype 属性 HTML button formenctype 属性 HTML button formenctype 属性 HTML button formenctype 属性 HTML button formenctype 属性

Internet Explorer 10, Firefox, Opera, Chrome, 和 Safari 支持 formenctype属性。

注意: Internet Explorer 9 及更早IE版本不支持 formenctype属性。


定义和用法

formenctype 属性覆盖 form 元素的 enctype 属性。

该属性与 type="submit" 配合使用。


HTML 4.01 与 HTML 5 之间的差异

formenctype 属性是 HTML 5 中的新属性。


语法

		<button type="submit" formenctype="value">

属性值

描述
application/x-www-form-urlencoded 在发送前对所有字符进行编码(默认)。
multipart/form-data 不对字符编码。当使用有文件上传控件的表单时,该值是必需的。
text/plain 将空格转换为 "+" 符号,但不编码特殊字符。


版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com

目录[+]

取消
微信二维码
微信二维码
支付宝二维码