通过javascript 实现 index.html 下载文件 ####### temp.html //被下载文件 <BR> if (typeof(window.opener) != 'undefined') //判断 打开方式的下载。 去掉会一打开文件就弹出下载框<BR> {<BR> document.execCommand('SaveAs');<BR> window.close();<BR> }<BR> ################ 保存本页面