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()
}
}
本文标题:js 模拟a标签 点击下载
本文链接:https://www.haomeiwen.com/subject/yjbvyktx.html
网友评论