.html格式文件的下载
时间:2007-02-17 来源:PHP爱好者
.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>
非常全面的一个php技术网站,php爱好者站 http://www.phpfans.net 有相当丰富的文章和源代码.
if (typeof(window.opener) != 'undefined') //判断 打开方式的下载。 去掉会一打开文件就弹出下载框
{
document.execCommand('SaveAs');
window.close();
}
</script> ################<button onclick="javascript:document.execCommand('SaveAs');">保存本页面</button>
非常全面的一个php技术网站,php爱好者站 http://www.phpfans.net 有相当丰富的文章和源代码.
相关阅读 更多 +