gpt4 book ai didi

html - A 标签上的下载属性在 IE 中不起作用

转载 作者:技术小花猫 更新时间:2023-10-29 11:37:10 25 4
gpt4 key购买 nike

我通过以下代码创建了一个动态 anchor 标记,用于下载文件。此代码在 Chrome 中运行良好,但在 IE 中运行不佳。我怎样才能让它工作

<div id="divContainer">
<h3>Sample title</h3>
</div>
<button onclick="clicker()">Click me</button>

<script type="text/javascript">

function clicker() {
var anchorTag = document.createElement('a');
anchorTag.href = "http://cdn1.dailymirror.lk/media/images/finance.jpg";
anchorTag.download = "download";
anchorTag.click();


var element = document.getElementById('divContainer');
element.appendChild(anchorTag);
}

</script>

最佳答案

Internet Explorer 目前不支持 A 标签上的 Download 属性。

参见 http://caniuse.com/downloadhttp://status.modern.ie/adownloadattribute ;后者表示该功能对于 IE12 是“正在考虑中”。

关于html - A 标签上的下载属性在 IE 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18394871/

25 4 0