js 控制IE 自动保存网页

//window.open方式 保存导入excel的Error提示内容到本地
function outFile() 

//将保存的文件 默认名称
var filename='错误汇总';   
//打开新的页面
var b=window.open('','','top=10,left=10'); 


//输出内容  
b.document.write( ' <html> '); 
b.document.write( ' <head> '); 
b.document.write( ' <title></title> '); 
b.document.write( ' </head> '); 
b.document.write( '<meta http-equiv="Content-Type" content="text/html; charset=utf-8">  '); 
b.document.write( ' <body > ');


//要输出到文件的内容
b.document.write(a.innerText);  
b.document.write( ' </body> '); 
b.document.write( ' </html> ');
 
//设置编码格式 !!!!!!! 如果没有这一句 那么输出都是乱码
b.document.charset ='utf-8';


//关闭输出
b.document.close(); 
b.document.execCommand('SaveAs','',filename)   
b.close();   

你可能感兴趣的:(html,function,Excel,IE)