当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML Input FileUpload type用法及代码示例


HTML DOM中使用Input FileUpload type属性返回文件上载按钮所在的表单元素的类型。此属性将始终为文件上传按钮返回“file”。

用法:

fileuploadObject.type

返回值:文件上载按钮的表单元素的类型。


例子:

<!DOCTYPE html> 
<html> 
  
<head> 
    <style> 
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <center> 
        <h1> 
          Geeks for Geeks 
      </h1> 
        <input type="file"
               id="myFile" 
               required> 
  
        <p id="demo"></p> 
  
        <button onclick="myFunction()"> 
          Click 
      </button> 
  
        <script> 
            function myFunction() { 
                var x =  
                    document.getElementById( 
                      "myFile").type; 
                
                document.getElementById( 
                  "demo").innerHTML = x; 
            } 
        </script> 
    </center> 
</body> 
  
</html>

输出:
之前:

后:

支持的浏览器:

  • 谷歌浏览器
  • 火狐浏览器
  • 边10.0
  • Opera
  • 苹果Safari


相关用法


注:本文由纯净天空筛选整理自Vijay Sirra大神的英文原创作品 HTML | DOM Input FileUpload type Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。