zoukankan      html  css  js  c++  java
  • //保存到相册

     //保存到相册
     function savePic(){   
         debugger      
        // var picurl= $("#picurl").attr("src");
          let picurl= window.sessionStorage.getItem('imgUrl');
        alert(  window.sessionStorage.getItem('imgUrl'));
        savePicture(picurl);
    }


    var triggerEvent = "touchstart";
    function savePicture(Url){
        debugger
        var blob=new Blob([''], {type:'application/octet-stream'});
        var url = URL.createObjectURL(blob);
        var a = document.createElement('a');
        a.href = Url;
        a.download = Url.replace(/(.*/)*([^.]+.*)/ig,"$2").split("?")[0];
        var e = document.createEvent('MouseEvents');
        e.initMouseEvent('click', true, false, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
        a.dispatchEvent(e);
        URL.revokeObjectURL(url);
    }
     //保存到相册
     function savePic(){   
         debugger      
        // var picurl= $("#picurl").attr("src");
          let picurl= window.sessionStorage.getItem('imgUrl');
        alert(  window.sessionStorage.getItem('imgUrl'));
        savePicture(picurl);
    }


    var triggerEvent = "touchstart";
    function savePicture(Url){
        debugger
        var blob=new Blob([''], {type:'application/octet-stream'});
        var url = URL.createObjectURL(blob);
        var a = document.createElement('a');
        a.href = Url;
        a.download = Url.replace(/(.*/)*([^.]+.*)/ig,"$2").split("?")[0];
        var e = document.createEvent('MouseEvents');
        e.initMouseEvent('click', true, false, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
        a.dispatchEvent(e);
        URL.revokeObjectURL(url);
    }
  • 相关阅读:
    nodeJS + webStrome
    js获取浏览器窗口属性
    理解JavaScript中的arguments,callee,caller,apply
    Java对象及对象引用变量
    Transform-style和Perspective属性
    线程同步的几种方式
    SQL高级查询——50句查询(含答案)
    接口、抽象类的区别与共同点
    JAVA异常架构图及常见面试题
    【转】JVM介绍
  • 原文地址:https://www.cnblogs.com/onesea/p/13229869.html
Copyright © 2011-2022 走看看