我使用phonegap / cordova为android创建了一个应用程序,它运行正常。现在我使用相同的代码创建Windows Phone 8应用程序,一切正常,除了以下:
$(document).on("pagecontainerchange", function( event, ui ) {
var activePage = ui.toPage[0].id;
var fromPage = ui.options.fromPage[0].id;
if (activePage == 'communication') {
getCommunicationDetails();
} else if (activePage == 'contacts') {
getContactDetails();
}
)};
事件未触发。有什么类似的东西可以在Android,Windows Phone和IOS上运行吗?
答案 0 :(得分:0)
在$(document).ready(function(){})中调用此事件;解决了我的问题。
由于 再也