筆記:html下載文件的幾種方式

下載的幾種方式

打開下載連接的方式html

  • html方式(a標籤)瀏覽器

    <a href="https://whereyourfilepathto.com/xxx.zip" target="_blank"></a>
    複製代碼

    行爲:打開一個新的窗口並觸發瀏覽器的下載行爲ui

  • js方式spa

    • window.opencode

      window.open('https://whereyourfilepathto.com/xxx.zip');
      複製代碼

      行爲:打開一個新的窗口並觸發瀏覽器的下載行爲htm

    • window.location.assignip

      window.location.assign('https://whereyourfilepathto.com/xxx.zip');
      複製代碼

      行爲:不打開新的窗口並觸發瀏覽器的下載行爲get

      推薦這種string

:D 喜歡就點個👍吧io

相關文章
相關標籤/搜索