当前位置: 代码迷 >> 综合 >> ssss定位器设备
  详细解决方案

ssss定位器设备

热度:24   发布时间:2023-09-07 21:58:15.0
ssss定位器设备

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

ssss定位器设备