js 模拟a标签 点击下载
2020-09-21 本文已影响0人
KK_boy
const downloadFileWithPath = (path) => {
if (path) {
const a = document.createElement('a')
a.setAttribute('download', '')
a.setAttribute('href', path)
a.click()
}
}
const downloadFileWithPath = (path) => {
if (path) {
const a = document.createElement('a')
a.setAttribute('download', '')
a.setAttribute('href', path)
a.click()
}
}