1

使用 windows phone 7 模拟器和 cordova 2.4.0

当我使用从 A 页面导航到 B 页面时

window.location.replace("B.html")

$(document).ready(function () {}) in B.html didn't execute...

我在虚拟按钮中的 onclick 事件绑定器上尝试了相同的代码,并且它有效

我认为它们是 windows phone 7 和 jquery document.ready 事件之间的一些问题,任何人都知道背后的原因以及如何解决?

4

1 回答 1

2

在进行 PhoneGap 时,您不应依赖 document.ready。您应该使用 PhoneGap 的 deviceready 事件。请查看这些线程:javascript document.ready() function not working in windows phone emulator with cordova 1.5

JQuery document.ready vs Phonegap deviceready

于 2013-02-18T21:00:34.203 回答