欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

长按保存图片,或点击按钮保存

程序员文章站 2022-06-24 15:27:17
$("#savebtn").on({ touchstart: function (e) { // 长按事件触发 timeOutEvent = setTimeout(function () { timeOutEvent = 0; save(); ... ......
 $("#savebtn").on({
        touchstart: function (e) {
            // 长按事件触发
            timeoutevent = settimeout(function () {
                timeoutevent = 0;
                save();
            }, 400);
            //长按400毫秒
            // e.preventdefault();
        },
        touchmove: function () {
            cleartimeout(timeoutevent);
            timeoutevent = 0;
        },
        touchend: function () {
            cleartimeout(timeoutevent);
            if (timeoutevent != 0) {
            }
            return false;
        }
    })
    function save()
    {
        

$.ajax({ url: '****', type: 'post', data: { typecode: typecode }, contenttype: 'application/json', success: function (data) { var a = $("<a></a>").attr("href", "data:image/png;base64," + data.data.image).attr("download", "***.png").appendto("body"); a[0].click(); a.remove(); } }); }