showPageLoadingMsg不起作用

时间:2012-10-23 17:08:19

标签: jquery jquery-mobile

我的使用微调器加载页面加载的功能似乎不起作用。

$('#HomeViewPage_ColleagueLocation').live('pagebeforeshow', function(toPage, fromPage){
            $.mobile.showPageLoadingMsg("a", "No spinner", true);
            setTimeout("test()", 2000);

            GetAllUsersByTeam();
            GetAvailableTeams();
            $('#colleagueLocationLabel').text(CurrentLocationName);
    });

function test(){
        alert("works");
    }

页面加载正常,警报响起,但我从未看到“No spinner”消息。 顺便说一下,我正在使用IE9。 为什么这不起作用?

1 个答案:

答案 0 :(得分:0)

变化:

$('#HomeViewPage_ColleagueLocation').live('pagebeforeshow', function(toPage, fromPage)

为:

$('#HomeViewPage_ColleagueLocation').live('pageshow', function(toPage, fromPage)

解决了它。