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


 $("#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(); } }); }

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM