我刚开始用 Javascript、HTML5 和 CSS3 为 Windows 8 开发应用程序。
我的问题是,在调用该函数时WinJS.Navigation.navigate (target-page.html)
,应用程序实际上加载了页面的文档 HTML,但应用程序没有执行事件ready
。target-page.js
我刚开始用 Javascript、HTML5 和 CSS3 为 Windows 8 开发应用程序。
我的问题是,在调用该函数时WinJS.Navigation.navigate (target-page.html)
,应用程序实际上加载了页面的文档 HTML,但应用程序没有执行事件ready
。target-page.js
The error was that in the "WinJS.Navigation.navigate ()" there wasn't the second arguments which is the state of the navigation, so the function became:"WinJS.Navigation.navigate (target-page.html, WinJS.Navigation.state)"
Thanks Bj
我认为您正在寻找特定的 Windows 事件。如果没有看到您的代码,很难确切地知道发生了什么。尝试这个:
document.addEventListener("DOMContentLoaded", //Your event handler, false);