jquery复制粘贴剪切事件 Gary Wang 2023-05-25 前端 jquery,js jquery复制粘贴剪切事件 123456789101112131415(function() { 'use strict'; alert(213); $('body').bind({ copy : function(){ alert('复制!'); }, paste : function(){ alert('黏贴!'); }, cut : function(){ alert('剪切!'); } });})();