首页 > 代码库 > 通过js只提供另存为功能【避免直接打开后,文件被占用,其他用户更新不了文件信息】(转)

通过js只提供另存为功能【避免直接打开后,文件被占用,其他用户更新不了文件信息】(转)

[javascript] view plaincopyprint?
  1. <script language="JavaScript">     
  2. function     savepic(){     
  3. if(document.all.a1==null){     
  4. objIframe=document.createElement("IFRAME");     
  5. document.body.insertBefore(objIframe);     
  6. objIframe.outerHTML=     "<iframe     name=a1     style=‘width:0;hieght:0‘     src="http://www.mamicode.com/+pic1.href+"></iframe>";     
  7. re=setTimeout("savepic()",1)     
  8. }     
  9. else{     
  10. clearTimeout(re)     
  11. pic     =     window.open(pic1.href,"a1")     
  12. pic.document.execCommand("SaveAs")     
  13. document.all.a1.removeNode(true)     
  14. }}     
  15.     </script>   



 

[html] view plaincopyprint?
  1. <a  href="b.txt" id="pic1" onclick="savepic();return false;" style="cursor:hand">  
  2.     单击下载  
  3. </a>  

通过js只提供另存为功能【避免直接打开后,文件被占用,其他用户更新不了文件信息】(转)