首页 > 网站 > WEB开发 > 正文

javascript如何将文件保存到本地

2024-04-27 14:06:32
字体:
来源:转载
供稿:网友

javascript如何将文件保存到本地

Javascript如何将文件保存到本地:

下面是保存一个图片为示例,代码来源于网络,希望能够给大家带来一定的帮助,代码如下:

<script type="text/javascript"> function saveFile(imgUrl) {   var oPop=window.open(imgUrl,"","width=1, height=1, top=5000, left=5000");   for(;oPop.document.readyState != "complete"; )   {    if(oPop.document.readyState=="complete")break;   }   oPop.document.execCommand("SaveAs");   oPop.close(); } </script> </head><body><img src="../mytest.jpg" id="theimage" border="0"> <a href="#" onclick="saveFile(document.getElementById('theimage').src)"> 点击这里下载图片 </a> </body></html>

原文地址是:http://www.51texiao.cn/javascriptjiaocheng/2015/0519/1869.html

最原始地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=8387


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