$("input").keydown(function(event){
if (event.keyCode == 13) {
        /* 提交或者别的操作 */
}
});

相关文章: