.html下載本地
通過javascript 實現
index.html
<a href=# onclick="window.open(temp.html);return(false);">下載文件</a>
#######
temp.html //被下載文件
<Script language="javascript">
if (typeof(window.opener) != undefined) //判斷 打開方式的下載。 去掉會一打開文件就彈出下載框
{
document.execCommand(SaveAs);
window.close();
}
</Script>
################
<button onclick="javascript:document.execCommand(SaveAs);">保存本頁面</button>