HTML DOM 按钮 formEnctype 属性用于设置或返回按钮元素中enctype属性的值。此属性指定提交到服务器时应编码的表单中出现的数据。只有当method = “POST” 时才能使用这种类型的属性。它覆盖了 元素的 enctype 属性。 句法: 它返回 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:此值将空格转换为 + 符号,但不转换特殊字符。 返回值:它在将表单数据发送到服务器时返回一个字符串值,该值表示表单数据的编码类型。 示例 1:此示例说明如何返回 Button formEnctype 属性。 HTML DOM Button formEnctype Property GeeksForGeeks HTML DOM Button formEnctype Property Submit click on below button to return the Property Click Here! 输出:点击按钮前: 点击按钮后: 示例 2:此示例说明如何设置 Button formEnctype 属性。 HTML DOM Button formEnctype Property GeeksForGeeks HTML DOM Button formEnctype Property Submit click on below button to set the Property Click Here! 输出:点击按钮前: 点击按钮后: 支持的浏览器: HTML DOM Button formEnctype 属性支持的浏览器如下: 谷歌浏览器 IE浏览器 火狐 苹果Safari 歌剧