Ajax的写法

这是ajax用JQuery的写法传值:

$.ajax({
  type: 'post',
  url: '/ExamineVideo/GetCheckList',
  data: {
  'exam_rec_id': exam_Rec_ID
  },
  success: function (clist) {
    alert("Ajax传值成功后的操作");
  },
  error:function(clist){
    alert("Ajax传值失败后的操作");
  }

});

 

posted @ 2016-04-07 10:10  独二  阅读(117)  评论(0编辑  收藏  举报