摘要: function A(callback) { console.log('我是主函数'); setTimeout(function () { callback("我是主函数传出的"); }, 3000); } //... 阅读全文