表单输入完毕后回车自动提交 jquery
$(function(){
//回车自动提交
$(‘body’).keypress(function(event){
if(event.which==13){
$(‘#ajax_login_form’).submit();
}
});
$(function(){
//回车自动提交
$(‘body’).keypress(function(event){
if(event.which==13){
$(‘#ajax_login_form’).submit();
}
});