这是ajax用JQuery的写法传值:ajax
$.ajax({
type: 'post',
url: '/ExamineVideo/GetCheckList',
data: {
'exam_rec_id': exam_Rec_ID
},
success: function (clist) {
alert("Ajax传值成功后的操做");
},ide
error:function(clist){post
alert("Ajax传值失败后的操做");url
}io
});function