我想在成功函数中发出一个 ajax 请求,但我需要向它传递一个不同的“guidlist”。
$.ajax({
url: "my.ashx",
datatype: 'json',
type: 'post',
data: {
cmd: 3, //poll database for job status
guidlist: guidList
},
success: function(){
$.ajax(this);<-all the same except I need to change what i am passing in for guidlist
}
})