移动端HTML5 文件下载
download () {
let link = document.createElement('a') l
ink.style.display = 'none' let url = `.....`//绝对地址
link.href = url
link.download = '' //文件名
document.head.appendChild(link)
link.click()
document.head.removeChild(link)
}
download () {
let link = document.createElement('a') l
ink.style.display = 'none' let url = `.....`//绝对地址
link.href = url
link.download = '' //文件名
document.head.appendChild(link)
link.click()
document.head.removeChild(link)
}