0

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

$('#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");
    }

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

4

1 回答 1

0

改变:

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

到:

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

解决了。

于 2012-10-23T17:22:03.187 回答