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