jquery复制粘贴剪切事件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(function() {
'use strict';
alert(213);
$('body').bind({
copy : function(){
alert('复制!');
},
paste : function(){
alert('黏贴!');
},
cut : function(){
alert('剪切!');
}
});
})();