咨询热线:4006-75-4006
售前:9:00-23:30 备案:9:00-18:00 技术:7*24h
//复制
$("#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!')
});