用xmlhttp﹐參考﹕
http://www.csdn.com.cn/html/040531/2004414475486890.html

解决方案 »

  1.   

    在图片上点右键实现保存该图片。
    前提,同域。<script>
    function getimg() {
    event.returnValue=false;
    show.window.location.href=event.srcElement.src;
    timer=setInterval(checkload,100)
    }
    function checkload(){
    if(show.readyState!="complete")
    {show.document.execCommand("SaveAs");
      clearInterval(timer)}
    }</script>
    <img src="csdn.gif" oncontextmenu="getimg()">
    <img src="aspplus2.gif" oncontextmenu="getimg()">
    <iframe src="" name=show style="width:0;height:0"></iframe>