fetch('视频链接').then(res => res.blob()).then(blob => {
const a = document.createElement('a')
document.body.appendChild(a)
a.style.display = 'none'
const url = window.URL.createObjectURL(blob)
a.href = url
a.download = '视频名称'
a.click()
document.body.removeChild(a)
window.URL.revokeObjectURL(url)
})