美文网首页
ajax使用注意

ajax使用注意

作者: 黑人的嘿 | 来源:发表于2019-05-24 13:40 被阅读0次
新版jQuery使用ajax:
  $.ajax({
         'url': '/booktest/login_ajax_check/',
         'type': 'post',
         'data': {'username': username, 'password': password},
         'dataType': 'json',
         success: function (data) {
             if(data.res == 0){
                 $('#errmsg').show().html('用户名或密码错误')
             } else {
                 location.href = '/booktest/home/'
             }
         }
  })

旧版jQuery使用ajax:
  $.ajax({
         'url': '/booktest/login_ajax_check/',
         'type': 'post',
         'data': {'username': username, 'password': password},
         'dataType': 'json',
  }).success(function (data) {
          if (data.res == 0){
              $('#errmsg').show().html('用户名或密码错误')
          } else {
              location.href = '/index'
          }
   })

相关文章

网友评论

      本文标题:ajax使用注意

      本文链接:https://www.haomeiwen.com/subject/anfyzftx.html