//输入框正在输入时 $("#test1").on('input',function(){ alert('正在输入'); }) //输入框得到焦点时 $("#test2").on('focus',function(){ alert('得到焦点'); }) //输入框失去焦点时 $("#test3").on('blur',function(){ alert('失去焦点'); })