html下载本地
时间:2021-07-08 14:49:17|栏目:JavaScript代码|点击: 次
通过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>
上一篇:Javascript静态分页(多个资料,静态自动分页)
栏 目:JavaScript代码
本文标题:html下载本地
本文地址:http://www.codeinn.net/misctech/154480.html