// 监听回车键
$(".input_text").keydown(function (e) {
// 回车键判断
if (e.which !== 13) {
return true;
}
})
keydown按键监听用来接收按键的输入。
如果return为false,则会拦截该输入,不会触发浏览器的热键。
反之,则不会拦截该输入。
$(".input_text").bind("input propertychange",function(event){
});
propertychange用来监听input值的改变,不会收到回车键等信息的输入。