咨询热线:4006-75-4006

售前:9:00-23:30    备案:9:00-18:00    技术:7*24h

jquery检测复制、粘贴与剪切操作

2019-01-25 09:16:42 3042次

//复制

$("#textA").bind('copy', function() {  

    $('span').text('copy behaviour detected!')  

}); 

//粘贴 

$("#textA").bind('paste', function() {  

    $('span').text('paste behaviour detected!')  

}); 

//剪切

$("#textA").bind('cut', function() {  

    $('span').text('cut behaviour detected!')  

});


首页
最新活动
个人中心