input框回车事件有以下几种方法:
<input id="inputId" type="text" />
<script>
//方法1
$(function(){
$('#inputId').bind('keypress',function(event){
if(event.keyCode == "13"){
alert();
}
});
});
//方法2
$('#inputId').on('keypress',function(event){
if(event.keyCode == 13) {
alert();
}
});
//方法3
$("#inputId").keydown(function(e) {
if (e.keyCode == 13) {
alert("12345....");
}
});
</script>