当前位置: 技术问答>java相关
我要下载*.txt文件,怎样才能出现下载对话框,而不是在IE里面直接打开*.txt文件
来源: 互联网 发布时间:2015-09-15
本文导语: | 下载 function openfile() { var a =window.open("/try.txt","_blank","top=2000;left=2000"); a.document.execCommand("SaveAs"); a.close(); }
|
下载
function openfile() {
var a =window.open("/try.txt","_blank","top=2000;left=2000");
a.document.execCommand("SaveAs");
a.close();
}
function openfile() {
var a =window.open("/try.txt","_blank","top=2000;left=2000");
a.document.execCommand("SaveAs");
a.close();
}