本文介绍了使用jQuery的escape key的哪个键代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有两个功能。当按下enter时,功能正常运行,但是当按下escape时它不会。转义键的正确数字是多少?
I have two functions. When enter is pressed the functions runs correctly but when escape is pressed it doesn't. What's the correct number for the escape key?
$(document).keypress(function(e) {
if (e.which == 13) $('.save').click(); // enter (works as expected)
if (e.which == 27) $('.cancel').click(); // esc (does not work)
});
推荐答案
尝试使用:
$(document).keyup(function(e) {
if (e.keyCode === 13) $('.save').click(); // enter
if (e.keyCode === 27) $('.cancel').click(); // esc
});
这篇关于使用jQuery的escape key的哪个键代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!