日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網為廣大站長提供免費收錄網站服務,提交前請做好本站友鏈:【 網站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

現如今,許多應用程序允許用戶進行文件的上傳下載。例如,抄襲檢測工具允許用戶上傳一個包含一些文本的文檔文件。然后,它會檢查抄襲并生成報告,用戶可以下載該報告。

每個人都知道使用input type file來創建一個上傳文件按鈕,但是很少有開發者知道如何使用JavaScript/ JQuery來創建一個文件下載按鈕。

本教程將教授點擊HTML按鈕或JavaScript時觸發文件下載的各種方法。

使用HTML的標簽和download屬性,在按鈕點擊時觸發文件下載

每當我們給標簽添加download屬性時,我們可以將標簽作為文件下載按鈕使用。我們需要將文件的URL作為href屬性的值傳遞,以允許用戶在點擊鏈接時下載特定的文件。

語法

用戶可以按照下面的語法使用標簽創建一個文件下載按鈕。

<a href = "file_path" download = "file_name">

登錄后復制

在上述語法中,我們添加了download屬性和文件名作為download屬性的值。

參數

    file_path – 這是我們希望用戶下載的文件路徑。

    Example 1

    的翻譯為:

    示例 1

    在下面的示例中,我們將圖像URL作為HTML 標簽的href屬性的值傳遞。我們使用下載按鈕作為標簽的錨文本

    每當用戶點擊按鈕時,他們可以看到它觸發了文件下載。

    <html>
       <body>
          <h3> Using the <i> download attribute of <a> tag </i> to create file download button using JavaScript. </h3>
          <p> Click the below button to download the image file </p>
          <a 
          Download = "test_image">
             <button type = "button"> Download </button>
          </a>
       </body>
    </html>
    

    登錄后復制

    使用window.open()方法

    window.open() 方法在新標簽頁中打開一個URL。我們可以將URL作為 open() 方法的參數傳遞。

    如果open()方法無法打開URL,則會觸發文件下載。

    語法

    用戶可以按照以下語法使用window.open()方法來創建一個文件下載按鈕。

    window.open("file_url")
    

    登錄后復制

    在上述語法中,我們將文件URL作為window.open()方法的參數傳遞。

    Example 2

    在下面的示例中,每當用戶點擊按鈕時,它會觸發downloadFile()函數。在downloadFile()函數中,window.open()方法會觸發文件下載。

    <html>
    <body>
       <h3> Using the <i> window.open() method </i> to create a file download button using JavaScript. </h3>
       <p> Click the below button to download the image file </p>
       <button type = "button" onclick = "downloadFile()"> Download </button>
    </body>
       <script>
          function downloadFile() {
             window.open("https://images.pexels.com/photos/268533/pexels-photo-268533.jpeg?cs=srgb&dl=pexels-pixabay-268533.jpg&fm=jpg")
          }
       </script>
    </html>
    

    登錄后復制

    獲取用戶輸入,使用該輸入創建文件,并允許用戶下載該文件

    這種方法將允許用戶在輸入框中編寫文本。之后,使用輸入的文本,我們將創建一個新文件,并允許用戶下載該文件。

    語法

    用戶可以按照以下語法創建一個文件,其中包含自定義文本,并允許用戶下載它。

    var hidden_a = document.createElement('a'); 
    hidden_a.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(texts)); 
    hidden_a.setAttribute('download', "text_file"); 
    document.body.appendChild(hidden_a); hidden_a.click(); 
    

    登錄后復制

    在上述語法中,我們對文本進行了編碼,以將其附加到文件中,并使用<a>標簽進行創建。

    算法

      第一步 – 通過訪問HTML輸入來獲取文本。

      Step 2 ? Create a custom HTML <a> tag using JavaScript createElement() method.

      步驟 3 ? 使用setAttribute()方法,為hidden_a HTML元素設置href屬性。將編碼后的文本作為href屬性的值。

      步驟 4 ? 再次使用 setAttribute() 方法,并將 download 屬性設置為隱藏元素 hidden_a 的下載文件名值。

      第五步 – 將hidden_a元素追加到body中。

      步驟6 – 使用click()方法在hidden_a元素上觸發點擊。當它調用click()方法時,它開始下載。

      第7步 – 使用removeChild()方法從文檔主體中移除hidden_a元素。

      Example 3

      的中文翻譯為:

      示例3

      In the example below, users can enter any custom text in the input field and click the button to trigger file download using JavaScript. We have implemented the above algorithm to trigger a file download.

      <html>
      <body>
         <h3> Create the file from the custom text and allow users to download that file </h3>
         <p> Click the below button to download the file with custom text. </p>
         <input type = "text" id = "file_text" value = "Entetr some text here.">
         <button type = "button" onclick = "startDownload()"> Download </button>
      </body>
         <script>
            function startDownload() {
               // access the text from the input field
               let user_input = document.getElementById('file_text');
               let texts = user_input.value;
               
               // Create dummy <a> element using JavaScript.
               var hidden_a = document.createElement('a');
               
               // add texts as a href of <a> element after encoding.
               hidden_a.setAttribute('href', 'data:text/plain;charset=utf-8, '+ encodeURIComponent(texts));
               
               // also set the value of the download attribute
               hidden_a.setAttribute('download', "text_file");
               document.body.appendChild(hidden_a);
               
               // click the link element
               hidden_a.click();
               document.body.removeChild(hidden_a);
            }
         </script>
      </html>
      

      登錄后復制

      使用axios庫創建一個下載文件按鈕

      axios庫允許我們從任何URL獲取數據。因此,我們將從任何URL或文件路徑獲取數據,然后將該數據設置為<a>標簽的href屬性的值。此外,我們將使用setAttribute()方法向<a>標簽添加download屬性,并使用click()方法觸發文件下載。

      語法

      用戶可以按照以下語法使用axios和JavaScript來觸發文件下載。

      let results = await axios({
         url: 'file_path',
         method: 'GET',
         responseType: 'blob'
      })
      // use results as a value of href attribute of <a> tag to download file
      hidden_a.href = window.URL.createObjectURL(new Blob([results.data]));
      

      登錄后復制

      在上面的語法中,axios.get() 方法允許我們從存儲在 results 變量中的 file_path 獲取數據。之后,我們使用 new Blob() 構造函數將數據轉換為 Blob 對象。

      Example 4

      的中文翻譯為:

      示例4

      在下面的示例中,我們使用axios從URL獲取數據,將其轉換為Blob對象,并將其設置為href屬性的值。

      之后,我們通過JavaScript點擊了<a>元素以觸發文件下載。

      <html>
      <head>
         <script src = "https://cdnjs.cloudflare.com/ajax/libs/axios/1.3.1/axios.min.js"> </script>
      </head>
      <body>
         <h3> Using the <i> axios library </i> to trigger a download file. </h3>
         <p> Click the below button to download the file with custom text. </p>
         <button type = "button" onclick = "startDownload()"> Download </button>
      </body>
         <script>
            async function startDownload() {
               // get data using axios
               let results = await axios({
                  url: 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTZ4gbghQxKQ00p3xIvyMBXBgGmChzLSh1VQId1oyhYrgir1bkn812dc1LwOgnajgWd-Yo&usqp=CAU',
                  method: 'GET',
                  responseType: 'blob'
               })
               let hidden_a = document.createElement('a');
               hidden_a.href = window.URL.createObjectURL(new Blob([results.data]));
               hidden_a.setAttribute('download', 'download_image.jpg');
               document.body.appendChild(hidden_a);
               hidden_a.click();
            }
         </script>
      </html>

      登錄后復制

      以上就是點擊HTML按鈕或JavaScript時如何觸發文件下載?的詳細內容,更多請關注www.92cms.cn其它相關文章!

分享到:
標簽:下載 按鈕 文件 點擊 觸發
用戶無頭像

網友整理

注冊時間:

網站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網站吧!
最新入駐小程序

數獨大挑戰2018-06-03

數獨一種數學游戲,玩家需要根據9

答題星2018-06-03

您可以通過答題星輕松地創建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數有氧達人2018-06-03

記錄運動步數,積累氧氣值。還可偷

每日養生app2018-06-03

每日養生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定