當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。