使用javascript下载文件无法在Mozilla中运行

时间:2015-01-13 06:32:34

标签: javascript html firefox download mozilla

我的代码如何工作。 当我单击按钮时,它将下载该文件。 我的代码在Google Chrome中运行,但在Mozilla Firefox中无效。

这是我的代码

HTML

<button type='Button' onClick='dlpdf("http://www.energy.umich.edu/sites/default/files/pdf-sample.pdf")'>Download</button>

JAVASCRIPT

function dlpdf(fileURL){

    if (!window.ActiveXObject) {
        var save = document.createElement('a');

        //alert(fileURL);

        save.href = fileURL;
        save.target = '_blank';
        save.download = fileURL || 'unknown';


        var event = document.createEvent('Event');
        event.initEvent('click', true, true);
        save.dispatchEvent(event);
        (window.URL || window.webkitURL).revokeObjectURL(save.href);
    }


}

0 个答案:

没有答案