jquery函数问题

时间:2010-04-16 23:32:42

标签: javascript jquery-ui jquery

我有这个功能

function onclickRowRecord(recordID) { 

     $.ajax({
   type: "POST",
   url: '/file/to/post.to.php' ,
   data: {recordID:recordID}, 
   success: function(data) {

    //how to post this to  function howToPost(recordID) the recordID  

   }
  });        
} 

function howToPost(recordID){
alert(recordID);
}

那么如何从ajax成功获得响应并发布到其他函数

2 个答案:

答案 0 :(得分:1)

如果你的意思是调用hotToPost函数,那么

...
success: function(data) {

    howToPost(data.recordID); //or whatever

}
....

希望这有帮助。

答案 1 :(得分:0)

$.ajax({
    type: "POST", url: '/file/to/post.to.php' , data: {recordID:recordID}, success: function(data) {
        alert(recordID)
    } 
});

这有用吗?有点jQuery的新手