// 2. 获取表单值 var username = $('input[name="username"]').val(); // 3. ajax请求 $.ajax({ url: '/login', // url where to submit the request type : 'POST', // type of action POST || GET dataType : 'json', // data type data : { username: username }, // post data || get data success : function(result) { // 3.1. 请求成功 console.log(result); }, error: function(xhr, resp, text) { // 3.2. 请求失败 console.log(xhr, resp, text); } }) });
// 2. 获取表单值, 看这里!!!! var data = {}; $(this).serializeArray().map(function(x){data[x.name] = x.value;}); console.log(data); // 3. ajax请求 $.ajax({ url: '/login', // url where to submit the request type : 'POST', // type of action POST || GET dataType : 'json', // data type data : { username: username }, // post data || get data success : function(result) { // 3.1. 请求成功 console.log(result); }, error: function(xhr, resp, text) { // 3.2. 请求失败 console.log(xhr, resp, text); } }) });