在下面的代码中,有没有办法可以在 e.which === 13 上使用 keydown,而不是使用 keydown?这是它不必在每次按下键时检查,并且只有在按下回车时才会起作用。
当前代码
$('.search').on('keydown', function(e) {
if(e.which === 13) {
// enter key pressed
var value = this.value; // this is the inputs value
console.log(value);
}
});
我希望做什么(伪代码)
$('.search').(when key === 13 is pressed) { // Only if the enter key pressed
// enter key pressed
var value = this.value; // this is the inputs value
console.log(value);
}
});
可以做这样的事情吗?