js回调小例子
Posted test
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js回调小例子相关的知识,希望对你有一定的参考价值。
$(function () { let db = ‘‘; (function () { // 定义一个匿名自执行函数 getInfo(function (ret) { // 执行 getInfo 函数,并将一个匿名函数当做参数传递过去 alert(ret);
console.log(db); }) })() function getInfo(callback) { $.ajax({ url: ‘http://api.douban.com/v2/movie/top250‘, async: true, dataType: ‘jsonp‘, success(result) { db = result; callback(db); // 执行传递过来的匿名函数 }, error(err) { console.log(err); } }) } })
通过这种方式,我们就可以解决异步数据的获取问题。
以上是关于js回调小例子的主要内容,如果未能解决你的问题,请参考以下文章