JavaScript实现控制打开文件另存为对话框的方法
本文实例讲述了JavaScript实现控制打开文件另存为对话框的方法。分享给大家供大家参考。具体如下:
这里通过JS打开图片另存为对话框,提示用户保存文件
<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.0Transitional//EN"> <html> <head> <title>NewDocument</title> <metaname="Generator"content="EditPlus"> <metaname="Author"content=""> <metaname="Keywords"content=""> <metaname="Description"content=""> <scriptsrc="js/jquery.min.js"type="text/javascript"></script> <scriptlanguage="JavaScript"> <!-- functiondownLoadImage(imagePathURL){ //如果中间IFRAME不存在,则添加 if(!document.getElementById("_SAVEASIMAGE_TEMP_FRAME")) jQuery('<iframestyle="display:none;"id="_SAVEASIMAGE_TEMP_FRAME" name="_SAVEASIMAGE_TEMP_FRAME"onload="_doSaveAsImage();" width="0"height="0"src="about:blank"></iframe>').appendTo("body"); if(document.all._SAVEASIMAGE_TEMP_FRAME.src!=imagePathURL){ //图片地址发生变化,加载图片 document.all._SAVEASIMAGE_TEMP_FRAME.src=imagePathURL; }else{ //图片地址没有变化,直接另存为 _doSaveAsImage(); } } function_doSaveAsImage(){ if(document.all._SAVEASIMAGE_TEMP_FRAME.src!="about:blank") document.frames("_SAVEASIMAGE_TEMP_FRAME").document.execCommand("SaveAs"); } //--> </script> </head> <body> <inputtype="button"value="downloadimage" onclick="downLoadImage('https://www.nhooo.com/images/logo.gif');"> </body> </html>
希望本文所述对大家的javascript程序设计有所帮助。