0

我刚开始用 Javascript、HTML5 和 CSS3 为 Windows 8 开发应用程序。

我的问题是,在调用该函数时WinJS.Navigation.navigate (target-page.html),应用程序实际上加载了页面的文档 HTML,但应用程序没有执行事件readytarget-page.js

4

2 回答 2

1

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

于 2013-01-09T11:47:52.643 回答
0

我认为您正在寻找特定的 Windows 事件。如果没有看到您的代码,很难确切地知道发生了什么。尝试这个:

  document.addEventListener("DOMContentLoaded", //Your event handler, false);
于 2013-01-07T21:18:37.467 回答