我在 PHP 中有一个在 ajax 上工作的登录表单,当我单击登录按钮时它工作得很好,但在按下回车键时却没有。
我对此进行了大量研究,并尝试了该网站上发布的所有相同解决方案,并尝试了所有解决方案,但没有什么对我有用。
我的 HTML 包含在 div id ="mini-login" 中
<div class="content-login">
<h4>Email Address:</h4>
<input type="text" name="email" value="" />
<h4>Password:</h4>
<input type="password" name="password" value="" id="pasword"/>
<br />
<a href="<?php echo $forgotten; ?>"><?php echo $text_forgotten; ?></a><br />
<br />
<input type="button" value="<?php echo $button_login; ?>" id="button-login-mini" class="button" />
还有我的剧本——
$('#button-login-mini').live('click', function() {
$.ajax({
url: 'index.php?route=module/login/validate',
type: 'post',
data: $('#mini-login .content-login :input'),
dataType: 'json',
beforeSend: function() {
$('#button-login-mini').attr('disabled', true);
$('#button-login-mini').after('<span class="wait">Please wait</span>');
},
complete: function() {
$('#button-login-mini').attr('disabled', false);
$('.wait').remove();
},
success: function(json) {
$('.warning, .error').remove();
if (json['redirect']) {
$('#mini-login .content-login').fadeOut('slow');
location = json['redirect'];
} else if (json['error']) {
$('#mini-login .content-login').prepend('<div class="warning" style="display: none;">' + json['error']['warning'] + '</div>');
$('.warning').fadeIn('slow');
}
},
error: function(xhr, ajaxOptions, thrownError) {
alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
}
});
});
所以上面的工作非常好,但我尝试在输入键上调用它 - keyup、keydown、keypress 并检查 keyCode==13,但它不起作用,也尝试使用表单,现在对此发疯了! !!我究竟做错了什么??以及如何使它工作?
注意:登录页面不是一个完整的文档,点击主页上的登录链接会向下滑动。
这就是登录页面的调用方式-
$(document).ready(function() {
$('#mini-login > .heading-login a').live('click', function() {
$('#mini-login').addClass('active');
$('#mini-login').load('index.php?route=module/login #mini-login > *');
$('#mini-login').live('mouseleave', function() {
$(this).removeClass('active');
});
});
});