首页 > 编程 > JavaScript > 正文

html下载本地

2019-11-21 02:35:20
字体:
来源:转载
供稿:网友

通过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>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表