我想将用户在html输入元素中键入的用户名和密码值发送到服务器,以在用户单击登录按钮时使用jquery中$.ajax(options)
方法中的post请求检查用户名和密码是否有效。
但是我不知道如何将用户名和密码发送到服务器。我应该在$.ajax(options)
方法中编写什么选项以从服务器获取这些值?
最佳答案
您可以像这样:
$.ajax({
url:'server-file-url.php',
type:POST,
data:$('form_id').serialize(), // this will get form fields
success:function(res){
alert(res);
};
});
在服务器文件中,您检查数据库中用户的记录(如果存在),您只需发送回一些响应,例如
1
成功和0
失败,然后在success
的$.ajax
参数中使用该响应。功能采取适当的措施。