函数info()
用图像附加我的文档(完成的是什么),但是我也希望用json中的信息编写变量next
,这样我就可以在{{1}之外使用它了}
info()
答案 0 :(得分:4)
欢迎使用回调
function info(link, callback) {
$.getJSON(link, function(json) {
$.each(json.data.children, function(i, things) {
$("#threadlist").append('<img src="' + things.data.url + '">')
})
callback(json.data.after)
});
}
info("url", function (next) {
...
})