html – 在IE上不能使用的标签下载属性

前端之家收集整理的这篇文章主要介绍了html – 在IE上不能使用的标签下载属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
从以下代码中,我创建一个下载文件的动态锚标签。此代码在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标签上的“下载”属性

http://caniuse.com/downloadhttp://status.modern.ie/adownloadattribute;后者表明IE12的特征是“正在考虑”。

原文链接:https://www.f2er.com/html/233500.html

猜你在找的HTML相关文章