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>
相关文章
微信小程序 后台https域名绑定和免费的https证书申请详解
这篇文章主要介绍了微信小程序 后台https域名绑定和免费的https证书申请详解的相关资料,需要的朋友可以参考下2016-11-11微信小程序 教程之wxapp视图容器 scroll-view
这篇文章主要介绍了微信小程序 教程之wxapp视图容器 scroll-view的相关资料,需要的朋友可以参考下2016-10-10
最新评论