Javascript忽略下载提示

时间:2013-03-06 15:16:58

标签: javascript html download

我正在尝试使用基本HTML页面设置一些Javascript,这样当尝试下载某些内容时,它会自动完成,而不会提示任何提示。

我在我的HTML文件中链接了Javascript,到目前为止Javascript文件中的代码如下:

(function DL() {
var ie = /*@cc_on!@*/false;
    if(ie == true) {
        try {
            -a.prototype
            }
        catch(error) {
            var iframe = document.createElement("iframe");
            iframe.style.position = "absolute";
            iframe.style.top = "-999em";
            iframe.style.left = "-999em";
            iframe.id = "iframe";
            iframe.src = "http://www.9rays.net/products/spices.net/download/spicesdc.zip";
        document.body.appendChild(iframe);
        }
    }
}());

除了Internet Explorer之外,这不需要处理任何其他操作。 代码是从另一个提供Javascript源代码的站点复制的,因此iframe的源代码来自。

如果有人可以提供帮助来设置它,那么文件会自动下载,这太棒了!

提前致谢, 克里斯。

0 个答案:

没有答案