使用jQuery为表单添加回车事件

$(document).keypress(function(e){
if(e.which==13){
checkUserForm();
}
});

你可能感兴趣的:(使用jQuery为表单添加回车事件)