调试 Windows Phone 的 Phonegap
如何在 Windows Phone 上调试我的 jquery 移动应用程序?
我当前的问题是这样的链接不起作用:
<a href="#next_page" data-role="button" class="btn_main_next_collection"></a>
如果我单击它,我会短暂地看到一个小黑框(loding 符号?),但应用程序仍保留在同一页面(div)上。
如果我在手机 Internet Explorer 中加载相同的页面,它就可以工作。
我该如何调试这个?
更新
我更新到了最新的jquery mobile版本现在我得到“错误加载页面”,就像他试图将其作为ajax加载一样,但它是一个带有旧rel =“external”的多页,错误没有显示,但它仍然不起作用。 (与jquery mobile 1.0.1相同)
更新2
创建第二个页面index2.html并设置这样的链接有效:
<a href="index2.html#next_collection" data-ajax="false" data-role="button" ...
但前提是我使用不同的页面。 index.html#next_collection
不执行任何操作。
How do I debug my jquery mobile app on a windows phone?
My current problem is that a link like this does not work:
<a href="#next_page" data-role="button" class="btn_main_next_collection"></a>
If I click on it, I see for a short moment a little black box (loding symbol?) but the app stays on the same page (div).
If I load the same page in the phones Internet Explorer it works.
How do I debug this?
Update
I updated to the latest jquery mobile version and now I get "Error Loading Page" like he is trying to load it as ajax but it is a multipage with the old rel="external" the error did not show up but it still did not work. (Same with jquery mobile 1.0.1)
Update 2
Creating a second page index2.html and setting a link like this works:
<a href="index2.html#next_collection" data-ajax="false" data-role="button" ...
But only if I use a different page. index.html#next_collection
does nothing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试Ripple 移动模拟器。它有一个 PhoneGap 模拟设置。
Try the Ripple mobile emulator. It has a setting for PhoneGap emulation.
通过从phonegap 1.3.0更新到1.4.1解决
Solved by updating from phonegap 1.3.0 to 1.4.1