HTML DOM 中的Input Submit formEnctype 属性用于设置或返回 Submit 字段中 enctype 属性的值。此属性指定提交到服务器时应编码的表单中出现的数据。只有当method =“POST”时才能使用这种类型的属性。它覆盖了 元素的 enctype 属性。 句法: 它返回 formEnctype 属性。 submitObject.formEnctype 它用于设置 formEnctype 属性。 submitObject.formEnctype = "application/x-www-form-urlencoded, multipart/form-data, text/plain" 属性值: application/x-www-form-urlencoded:这是默认值。它在发送到服务器之前对所有字符进行编码。它转换空格并转换为 + 符号和特殊字符为其十六进制值。 multipart/form-data:它不编码任何字符。 text/plain:此值将空格转换为 + 符号,但不转换特殊字符。 返回值将表单数据发送到服务器时,它返回一个字符串值,表示表单数据的编码类型。 示例 1:此示例说明如何返回 Input Submit formEnctype 属性。 HTML DOM Input Submit formEncctype Property GeeksForGeeks HTML DOM Input Submit formEnctype Property click on below button to return the Property Click Here! 输出:点击按钮前: 点击按钮后: 例 2:本例说明如何设置 Input Submit formEnctype 属性。 HTML DOM Input Submit formEncctype Property GeeksForGeeks HTML DOM Input Submit formEnctype Property click on below button to set the Property Click Here! 输出:点击按钮前: 点击按钮后: 支持的浏览器: DOM输入提交formEnctype属性支持的浏览器如下: 谷歌浏览器 IE浏览器 火狐 歌剧 苹果浏览器