本文介绍了在jquery中处理键事件(cntrl + z)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我想使用jquery代码执行cntrl + z似乎很好但是它不起作用。 任何人都可以帮我这个。 我的代码是如下: $(文件).keydown(函数(e){ if(e.keyCode == 90 && e.ctrlKey) ) { alert('cnttrl z pressed'); } }); 尝试将90单引号'90'不起作用 试过(e.keyCode == 90 && e.keyCode == 17)不工作 尝试过keyup而不是keydown不工作 提前谢谢I want to execute cntrl+z using jquery code seems to be fine but its not working.can anyone help me with this please.My code is as follows:$(document).keydown(function(e){if(e.keyCode==90 && e.ctrlKey){alert('cnttrl z pressed');}});tried putting 90 in single quotes '90' not workingtried (e.keyCode==90 && e.keyCode==17) not workingtried keyup instead of keydown not workingThanks in advance推荐答案 这篇关于在jquery中处理键事件(cntrl + z)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-29 07:28