0

我已经实现了一个应用程序jQuery mobile and phone gap (cordova based application) in iPad

我已经index.html使用 jQuery 实现了页面中的所有视图和代码

when i execute My xcode project works fine it shows required views in simulator.

when i open my index.html file in browsers it doesn't open / shown the views just a blank screen appears why..?

4

1 回答 1

0

我的猜测是你有一些依赖于 Cordova 的代码在“普通”浏览器中失败——检查你的 javascript 错误日志或发布指向你的 html/js 文件的链接。

通常,“deviceready”事件只会在移动设备上触发,因此将依赖 phonegap/cordova 的代码放入文档侦听器中,例如:

  document.addEventListener("deviceready", appReady, false);

并且不要在 appReady 中放入非 phonegap 代码(例如渲染视图)。

另请参阅: http ://docs.phonegap.com/en/1.0.0/phonegap_events_events.md.html#deviceready

->> 乔什 W <<-

于 2012-06-02T02:15:28.507 回答