jquery中监测copy/paste事件


下面的代码是在java中监测copy,paste,cut事件

$(document).ready(function() {
	$("#textA").bind({
		copy : function(){
		$('#message').text('copy behaviour detected!');
		},
		paste : function(){
		$('#message').text('paste behaviour detected!');
		},
		cut : function(){
		$('#message').text('cut behaviour detected!');
		}
	});
});	

你可能感兴趣的:(jquery)