Bookmark and Share

Lee's 程序人生

HTML CSS Javascript XML AJAX ATLAS C# C++ 数据结构 软件工程 设计模式 asp.net Java 数字图象处理 Sql 数据库
  博客园  :: 首页  :: 新随笔  :: 联系 :: 管理

.html格式文件的下载

Posted on 2008-01-21 02:01  analyzer  阅读(548)  评论(0编辑  收藏  举报

需要通过javascript 实现

index.html

<a href=# onclick="window.open('temp.html');return(false);">下载文件</a>

 

temp.html  //被下载文件

//需要使用以下javascript代码
  <Script language="javascript">
  if (typeof(window.opener) != 'undefined')   //判断 打开方式的下载。 去掉会一打开文件就弹出下载框
  {
   document.execCommand('SaveAs');
   window.close();
  }
  </Script> 

//然后做一个下载按钮
<button onclick="javascript:document.execCommand('SaveAs');">保存本页面</button>


http://www.dedecms.com/web-art/PHP_jiaocheng/20060913/30947.html
来源:Blog.ChinaUnix.net

我要啦免费统计