Button formEnctype 属性
定义和用法
formEnctype 属性设置或返回按钮的formenctype 属性的值。
formenctype 属性指定表单数据在发送到服务器之前应如何编码。 该属性覆盖表单的senctype 属性。
formenctype 属性仅用于 type="submit" 的按钮。
注释: formenctype 属性是 HTML5 中 <button> 元素的新属性。
浏览器支持
属性 | |||||
---|---|---|---|---|---|
formEnctype | Yes | 10.0 | Yes | Yes | Yes |
语法
返回 formEnctype 属性:
buttonObject.formEnctype
设置 formEnctype 属性:
buttonObject.formEnctype = "application/x-www-form-urlencoded,multipart/form-data,text/plain"
属性值
值 | 描述 |
---|---|
application/x-www-form-urlencoded | 所有字符在发送前都经过编码(这是默认设置) |
multipart/form-data | 没有字符被编码。 当您使用具有文件上传控件的表单时,此值是必需的 |
text/plain | 空格转换为 "+" 符号,但不编码特殊字符 |
技术细节
返回值: | 字符串,表示用于向服务器提交表单的内容类型 |
---|
更多实例
实例
将按钮的 formenctype 属性值从 "text/plain" 更改为 "application/x-www-form-urlencoded":
document.getElementById("myBtn").formEnctype = "application/x-www-form-urlencoded";
亲自试一试 »
相关页面
HTML 参考手册: HTML <button> formenctype 属性
❮ Button Object