1. 程式人生 > >jquery檢測複製、貼上與剪下操作

jquery檢測複製、貼上與剪下操作

//複製
$("#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!')  
});

原文地址:https://www.codelovers.cn/article/20180324140556.html