var a = document.createElement('a');
a.setAttribute('href', href);
document.body.appendChild(a);
a.click();
js动态创建a标签并点击
最新推荐文章于 2025-09-28 18:03:45 发布
var a = document.createElement('a');
a.setAttribute('href', href);
document.body.appendChild(a);
a.click();
3406

被折叠的 条评论
为什么被折叠?