下载链接在Internet Explorer上不起作用

时间:2019-05-06 01:41:58

标签: javascript internet-explorer internet-explorer-11

嗨,我在IE上遇到错误

TypeError: Object doesn't support this action

这是在IE上失败但在其他浏览器上无法正常工作的代码。

 var link = document.createElement('a');
            link.href = url;
            link.download = 'file';
            link.dispatchEvent(new MouseEvent('click'));

问题出在link.dispatchEvent行上。

任何人都可以帮助我使其正常工作吗?

1 个答案:

答案 0 :(得分:1)

较早版本的IE仅支持专有的等效EventTarget.fireEvent()方法,因此请考虑使用HTMLElement.click(),它是所有IE版本的fully supported