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()
  }
}
上一篇 下一篇

猜你喜欢

热点阅读