我正在开发一个jQuery Mobile Web Page
我从 facebook 页面导入相册和照片并将它们展示给用户的地方。
我的 javascript 需要 4-5 秒来执行和导入我需要的所有专辑。
我的 javascript 看起来像这样:
var albumPhotos = new Array();
var albumThumbnails = new Array();
var x=0;
var next;
// start the entire process
window.fbAsyncInit = function() {
// init the FB JS SDK
FB.init({
appId : '564984346887426', // App ID from the app dashboard
channelUrl : 'channel.html', // Channel file for x-domain comms
status : true, // Check Facebook Login status
xfbml : true // Look for social plugins on the page
});
FB.api('169070991963/albums', checkForErrorFirst(getAlbums));
}
我如何获得一个 jquery 移动小部件,该小部件将在此功能执行后立即启动并在功能完成时停止?