使用javascript调用系统文件保存
if(confirm('要保存文件吗?')) { var winSave=window.open(url); winSave.document.execCommand ("SaveAs",true,url.substring(url.lastIndexOf('/')+1)); winSave.close(); }
if(confirm('要保存文件吗?')) { var winSave=window.open(url); winSave.document.execCommand ("SaveAs",true,url.substring(url.lastIndexOf('/')+1)); winSave.close(); }