使用 jquery mobile 调用页面时遇到麻烦。在此示例中,我假设索引页面 (index.html) 是否将调用包含来自我的服务器的数据的数据页面 (data.html)。就我而言,当我使用以下语法从 index.html 调用页面时:
$.mobile.changePage("data.html");
在页面 data.html 我做了这个 sintax :
$(document).on('pageinit', '#myDataPage', function(){
GetData();
});
function GetData(){
//Ajax Function here
}
在我调用 data.html 之后,显然没有显示任何数据。但是,如果我手动刷新页面,则会成功显示从我的服务器获取的数据。我的代码有问题吗?