答案 0 :(得分:2)
这是检测 Ctrl + Z 的方法:
$(document).keydown(function(e){
if( e.which === 90 && e.ctrlKey){
alert("yahoo!");
// Do your stuff
}
});
jQuery也有一些内置的东西:
文章: http://www.mkyong.com/jquery/how-to-detect-copy-paste-and-cut-behavior-with-jquery/