代码如下
// 创建一个a链接进行跳转''
const link = document.createElement('a')
link.target = '_blank'
link.href = 'https://www.baidu.com'
link.click()
相关分类