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


HTML Input FileUpload multiple用法及代碼示例


HTML DOM中的Input FileUpload multiple屬性用於設置或返回使用文件上傳按鈕選擇的一個或多個文件。它包含一個布爾值,當允許用戶選擇多個文件時,該值為true。此屬性用於反映HTML多重屬性。

用法:

  • 它返回Input FileUpload multiple屬性。
    fileuploadObject.multiple
  • 它用於設置Input FileUpload multiple屬性。
    fileuploadObject.multiple = true|false

屬性值:


  • true:它允許使用文件上傳按鈕選擇多個文件。
  • False:不允許使用FileUpload按鈕選擇多個文件。

返回值:它返回一個布爾值,該值指定允許用戶使用“文件上傳”按鈕選擇多個文件。

範例1:

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input FileUpload multiple Property 
    </title>  
</head>  
  
<body style="text-align:center;">  
      
    <h1 style="color:green;">  
        GeeksforGeeks  
    </h1>  
      
    <h2> 
        HTML DOM Input FileUpload multiple Property 
    </h2> 
      
    <input type="file" id="geeks" multiple>  
      
    <br><br> 
  
    <button onclick="myFunction()">  
        Click  
    </button>  
  
    <p id="GFG" style="Font-size:20px;"></p>  
      
    <script>  
        function myFunction() {  
            var x = document.getElementById("geeks").multiple;  
  
            document.getElementById("GFG").innerHTML = x;  
        }  
        </script>  
    </center>  
</body>  
  
</html>

輸出:

  • 在單擊按鈕之前:
  • 單擊按鈕後:

範例2:

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML DOM Input FileUpload multiple Property 
    </title>  
</head>  
  
<body style="text-align:center;">  
      
    <h1 style="color:green;">  
        GeeksforGeeks  
    </h1>  
      
    <h2> 
        HTML DOM Input FileUpload multiple Property 
    </h2> 
      
    <input type="file" id="geeks" multiple>  
      
    <br><br> 
  
    <button onclick="myFunction()">  
        Click  
    </button>  
  
    <p id="GFG" style="Font-size:20px;"></p>  
      
    <script>  
        function myFunction() {  
            var x = document.getElementById("geeks").multiple 
                    = "false";  
  
            document.getElementById("GFG").innerHTML  
                    = "The value of the multiple attribute" 
                    + " was changed to " + x;  
        }  
    </script>  
</body>  
  
</html>
  • 單擊“打開”按鈕之前:
  • 單擊按鈕後:

支持的瀏覽器:下麵列出了HTML DOM Input FileUpload multiple Property支持的瀏覽器:

  • 穀歌瀏覽器
  • Internet Explorer 10.0
  • Firefox
  • Safari
  • Opera


相關用法


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