当前位置:编程学习 > JS >>

JS实现点击下载

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />


 <a   href="a.txt"   id=pic1   onclick="savepic();return false;"   style="cursor:hand">点击下载</a>  
          <script>  
                  function   savepic()
                {  
                  if(document.all.a1==null)
                        {  
                                  objIframe=document.createElement("IFRAME");  
                                  document.body.insertBefore(objIframe);  
                                  objIframe.outerHTML=   "<iframe   name=a1   style='width:0;hieght:0'   src="+pic1.href+"></iframe>";  
                                  re=setTimeout("savepic()",1)  
                          }  
                 else
                        {  
                                  clearTimeout(re)  
                                  pic   =   window.open(pic1.href,"a1")  
                                  pic.document.execCommand("SaveAs")  
                                  document.all.a1.removeNode(true)  
                          }
                }  
          </script>


摘自 特种兵—AK47
补充:web前端 , JavaScript ,
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,