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


HTML Input FileUpload accept用法及代碼示例


HTML DOM中的DOM輸入FileUpload accept屬性用於設置或返回文件上載按鈕的accept屬性的值。 accept屬性指定服務器可接受的文件類型。

用法:

  • 返回accept屬性:
    fileuploadObject.accept
  • 設置accept屬性:
    fileuploadObject.accept="audio/*, video/*, image/*, MIME_type"

屬性值:


  • audio/*:所有聲音文件都可以接受
  • video/*:可接受所有視頻文件
  • image/*:可接受所有圖像文件
  • MIME_type:有效的MIME類型,沒有參數。

返回值:它返回代表接受文件類型的字符串值。

示例1:返回接受的文件類型。

<!DOCTYPE html> 
<html> 
  
<head> 
    <style> 
        h1 { 
            color:green; 
        } 
    </style> 
  
</head> 
  
<body> 
    <center> 
        <h1> 
          Geeeks for Geeks 
      </h1> 
        <p>Select a file to upload:
            <input type="file" 
                   id="myFile" 
                   size="50"
                   accept="video/*"> 
        </p> 
        <button onclick="myFunction()"> 
            File type 
        </button> 
  
        <p id="demo"></p> 
  
        <script> 
            function myFunction() { 
                
                var gfg = 
                    document.getElementById( 
                      "myFile").accept; 
                
                document.getElementById( 
                  "demo").innerHTML = gfg; 
            } 
        </script> 
    </center> 
</body> 
  
</html>

輸出:
點擊前:

點擊後:

例子:設置可接受的文件類型。

<!DOCTYPE html> 
<html> 
  
<head> 
    <style> 
        h1 { 
            color:green; 
        } 
    </style> 
  
</head> 
  
<body> 
    <center> 
        <h1> 
          Geeks for Geeks 
      </h1> 
      <p>Select a file to upload:
            <input type="file" 
                   id="myFile" 
                   size="50"
                   accept="video/*"> 
        </p> 
  
        <button onclick="myFunction()"> 
          File type 
      </button> 
  
        <p id="demo"></p> 
  
        <script> 
            function myFunction() { 
                
                var gfg =  
                    document.getElementById( 
                      "myFile").accept =  
                    "audio/*,video/*"; 
                
                document.getElementById( 
                  "demo").innerHTML = gfg; 
            } 
        </script> 
  
    </center> 
</body> 
  
</html>

輸出:
點擊前:

點擊後:

支持的瀏覽器:

  • 穀歌瀏覽器
  • 火狐瀏覽器
  • Edge
  • Opera
  • Safari


相關用法


注:本文由純淨天空篩選整理自Vijay Sirra大神的英文原創作品 HTML | DOM Input FileUpload accept Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。