-
[上海|结业弟子]JS-燕赤霞0
jQuery 底层 AJAX 实现
/* $.ajax()写法 */
// var xhr = $.ajax({
// type: 'POST',
// data: {
// name: userVal,
// pwd: pwVal
// },
// url: '/carrots-admin-ajax/a/login',
// success: function () {
// // console.log()
// var xhrVal = JSON.parse(xhr.responseText);
// // console.log(xhrVal.code)
// if(xhrVal.code == -5003){
// $('#tips').text('用户不存在');
// }else if(xhrVal.code == -5004){
// $('#tips').text('密码不正确');
// }else {
// $('#tips').text('登陆成功');
// }
// }
// });
jQuery 高层 AJAX 实现
var data = {
name: userVal,
pwd: pwVal,
}
console.log(data)
/* $.post()写法 */
var xhr = $.post('/carrots-admin-ajax/a/login', data, function () {
var xhrVal = JSON.parse(xhr.responseText);
console.log(xhr.responseText)
console.log(xhrVal)
if (xhrVal.code == -5003) {
$('#tips').text('用户不存在');
} else if (xhrVal.code == -5004) {
$('#tips').text('密码不正确');
} else {
$('#tips').text('登陆成功');
// $(location).attr('href','http://www.baidu.com')
}
})
编辑于2018-11-16
- 去第 页