我在这里完全按照演示设置了表单:http://www.alessioatzeni.com/wp-content/tutorials/jquery/login-box-modal-dialog-window/index.html但是我不知道如何发布用户名和密码以便由我的jQuery处理。有人可以帮助我吗?
答案 0 :(得分:1)
您应该发布您遇到问题的具体代码,但我认为这会有所帮助:
$(document).on('click', '.submit.button', function () {
$.post('/signin', $(this).closest('form').serialize(), function (data) {
//check success or failure
});
});
答案 1 :(得分:0)
希望这会对你有所帮助。更简单,因为你只有2个字段。感谢
jQuery('.submit.button').click(function(){
var username = jQuery(this).find('#username').val();
var password = jQuery(this).find('#password').val();
jQuery.ajax({
url: "login.php",
data:{username:username, password: password},
type: "post",
success: function(html) {
//add success function here
},
error: function(html) {
//add error login here
},
statusCode: {
404: function() {
//404 here
}
}
});
});
干杯!