解决方法
你可以像这样绑定这些事件:
$(document).ready(function() { $("#Text1").bind('copy',function(e) { alert('copying text!'); }); $("#Text1").bind('paste',function(e) { alert('pasting text!'); }); $("#Text1").bind('cut',function(e) { alert('cut text!'); }); });