function tinyurl(){
jQuery.ajax({
url:'http://tinyurl.com/api-create.php?url=http://xxxxxxxxxxx/',
dataType:'script',
success:function(response){
welcomemsg(response.id);
}
});
}
function namie(){
jQuery.ajax({
url:'https://xxxxxx.com/names?user=random,
dataType:'jsonp',
success:function(data){
welcomemsg(data);
}
});
}
function welcomemsg(){
jQuery.ajax({
url:'https://xxxxx.com/posts?walmessage=Hello ' + data.name + ' your post has been posted '+ response.id +',
dataType:'script',
success:function(){
}
});
}
在这里,我无法在 welcomemsg 中传递函数 tinyurl 的响应和函数 namie 的响应。
也尝试通过更改参数。
没有取得任何成功。
我想在函数 welcomemsg 中使用 tinyurl 和 namie 的响应。