繁体   English   中英

Excel 在没有对话框提示的情况下在 Inte.net Explorer 中下载

[英]Excel download in Internet Explorer without Dialog Box Prompt

我正在尝试使用 javascript 实现下载 excel 功能


function fnExcelReport() {
    var tab_text = "<table border='2px'><tr bgcolor='#87AFC6'>";
    var textRange;
    var j = 0;
    tab = document.getElementById('table'); // id of table

    for (j = 0; j < tab.rows.length; j++) {
        tab_text = tab_text + tab.rows[j].innerHTML + "</tr>";
        //tab_text=tab_text+"</tr>";
    }

    tab_text = tab_text + "</table>";
    tab_text = tab_text.replace(/<A[^>]*>|<\/A>/g, ""); //remove if u want links in your table
    tab_text = tab_text.replace(/<img[^>]*>/gi, ""); // remove if u want images in your table
    tab_text = tab_text.replace(/<input[^>]*>|<\/input>/gi, ""); // reomves input params

    var ua = window.navigator.userAgent;
    var msie = ua.indexOf("MSIE ");
    if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) // If Internet Explorer
    {
        txtArea1.document.open("txt/html", "replace");
        txtArea1.document.write(tab_text);
        txtArea1.document.close();
        txtArea1.focus();
        sa = txtArea1.document.execCommand("SaveAs", true, "Say Thanks to Sumit.xls");
    } else //other browser not tested on IE 11
        sa = window.open('data:application/vnd.ms-excel,' + encodeURIComponent(tab_text));

    return (sa);
}

它在 chrome 中运行良好。 但在 Inte.net Explorer 中,会出现一个“另存为”对话框。 有没有办法不用打开对话框就可以下载文件

IE 浏览器显示的另存为对话框,您无法通过代码控制它。

在旧版本的 IE 浏览器中,有一个选项可以禁用下载提示。

在最新版本的 IE 浏览器中,出于安全目的删除了此选项。

所以现在没有办法禁用这个对话框。

您还可以参考此线程以查看有关此主题的讨论。

当我尝试使用 IE 10 打开文件时,如何禁用“打开或保存”提示

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM