我想将用户在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参数中使用该响应。功能采取适当的措施。

08-25 13:02
查看更多