📜  HTML | DOM 输入图像 formEnctype 属性

📅  最后修改于: 2021-11-08 06:50:40             🧑  作者: Mango

HTML DOM 中的Input Image formEnctype 属性用于设置或返回 Input Image 的 Enctype 属性的值。此属性指定提交到服务器时应编码的表单中出现的数据。只有当method =“POST”时才能使用这种类型的属性。它覆盖了

元素的 enctype 属性。
句法:

  • 它返回 formEnctype 属性。
    imageObject.formEnctype
  • 它用于设置 formEnctype 属性。
    imageObject.formEnctype = "application/x-www-form-urlencoded,
    multipart/form-data, text/plain"

    属性值:

    • application/x-www-form-urlencoded:这是默认值。它在发送到服务器之前对所有字符进行编码。它转换空格并转换为 + 符号和特殊字符为其十六进制值。
    • multipart/form-data:它不编码任何字符。
    • text/plain:此值将空格转换为 + 符号,但不转换特殊字符。

    返回值:它返回一个字符串值,代表表单数据发送到服务器时的编码类型。

    示例 1:此示例说明如何返回 Input Image formEnctype 属性。

    
    
      
    
        
            HTML DOM Input Image formEnctype
        
    
      
    
      
        

            GeeksforGeeks      

           

          DOM Input Image formEnctype Property     

                

                 

           

    输出:

    • 点击按钮前:
    • 点击按钮后:

    示例 2:此示例说明如何设置 formEnctype 属性。

    
    
      
    
        
            HTML DOM Input Image formEnctype
        
    
      
    
      
        

            GeeksforGeeks      

           

          DOM Input Image formEnctype Property     

                

           

    输出:

    • 单击按钮之前:
    • 点击按钮后:

    支持的浏览器: HTML DOM Input Image formEnctype 属性支持的浏览器如下:

    • 谷歌浏览器
    • IE浏览器
    • 火狐
    • 歌剧
    • 苹果浏览器