久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      html如何實(shí)現(xiàn)點(diǎn)擊下載文件功能

      html如何實(shí)現(xiàn)點(diǎn)擊下載文件功能

      使用a標(biāo)簽完成點(diǎn)擊下載文件功能

      <a href="/user/test/xxxx.txt" download="文件名.txt">點(diǎn)擊下載</a>

      這樣當(dāng)用戶打開瀏覽器點(diǎn)擊鏈接的時(shí)候就會(huì)直接下載文件。

      (推薦教程:html教程)

      但是有個(gè)情況,比如txt、png、jpg等這些瀏覽器支持直接打開的文件是不會(huì)執(zhí)行下載任務(wù)的,而是會(huì)直接打開文件,這個(gè)時(shí)候就需要給a標(biāo)簽添加一個(gè)屬性“download”。

      舉例:

      <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <a href="http://171.188.96.**:****/d/c833945c11/files/?p=/plugins.maintain.CheckLinePartTask/cebab687-6dc5-4128-b7d9-8bc2fe369598.png&raw=1" download="test.png">點(diǎn)擊下載</a> </body> </html>

      其中down后面的屬性是下載后文件的文件名字。

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)