通过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>
标签:
html下载本地
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
桃源资源网 Design By www.nqtax.com
暂无“html下载本地”评论...