本文主要是介绍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
这篇关于jquery检测复制、粘贴与剪切操作的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!