gpt4 book ai didi

javascript - 以编程方式单击 -tag 在 Firefox 中不起作用

转载 作者:IT王子 更新时间:2023-10-29 03:05:38 25 4
gpt4 key购买 nike

最佳答案

在 Firefox 中,您可以显式地将创建的元素添加到 DOM 中,它会起作用:

$('body').on('click', '#test', function(event) {
var link = document.createElement('a');
// Add the element to the DOM
link.setAttribute("type", "hidden"); // make it hidden if needed
link.download = 'test.xls';
link.href = 'data:application/vnd.ms-excel;utf-8,test';
document.body.appendChild(link);
link.click();
link.remove();
});

Fiddle

关于javascript - 以编程方式单击 <a>-tag 在 Firefox 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32225904/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com