SoFunction
Updated on 2025-04-03

JS open the Save As dialog box to implement code


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title> New Document </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<script src="/ajax/libs/jquery/1.3.2/" type="text/javascript"></script>
<script language="JavaScript">
<!--
function downLoadImage(imagePathURL){
//If the intermediate IFRAME does not exist, add
if(!("_SAVEASIMAGE_TEMP_FRAME"))
jQuery('<iframe style="display:none;" name="_SAVEASIMAGE_TEMP_FRAME" onload="_doSaveAsImage();"
width="0" height="0" src="about:blank"></iframe>').appendTo("body");
if(._SAVEASIMAGE_TEMP_FRAME.src!=imagePathURL){
//The image address changes, load the picture
._SAVEASIMAGE_TEMP_FRAME.src = imagePathURL;
}else{
//The image address has not changed, save it as
_doSaveAsImage();
}
}
function _doSaveAsImage(){
if(._SAVEASIMAGE_TEMP_FRAME.src!="about:blank")
("_SAVEASIMAGE_TEMP_FRAME").("SaveAs");
}
//-->
</script>
</head>
<body>
<input type="button" value="download image" onclick="downLoadImage('/images/blogjava_net/weiwei/46570/r_beyond1991.jpg');">
</body>
</html>