Simple example of JS saving images under IE
function ieSave() { var img = document.images[0]; var oPop = window.open(img.src, "", "width=0,height=0,top=5000,left=5000"); for (; oPop.document.readyState != "complete";) { if (oPop.document.readyState == "complete") break; } oPop.document.execCommand("SaveAs"); oPop.close(); }The above simple example of JS saving pictures under IE is all the content I share with you. I hope you can give you a reference and I hope you can support Wulin.com more.