多个.on事件和检测按键

时间:2016-04-19 03:58:45

标签: javascript jquery

我运行这样的函数:

$(document).on('change, focusout', '.something', function(){ ... }

我希望处理程序在keypress == 13时也能执行。 什么是最好的方法?

2 个答案:

答案 0 :(得分:1)

做一个if语句

$(document).on('change focusout keypress', '.something', function(e){
if(e.keyCode == 13 ) {
//code here
}
 });

答案 1 :(得分:0)

$(document).on('change, focusout', '.something', function(e)
{
if(e.keyCode == 13 ) { //some code here }
}