如何使用 jQuery Mobile 创建 iPhone Web Apps?
我被分配为 iPhone 创建一个 Web 应用程序,我应该尝试使用 jQuery Mobile 进行开发,因为它支持许多平台。
- 创建 iPhone Web 应用程序需要 PHP 吗?
- 我们还可以通过哪些其他方式创建类似于本机应用程序的有效网络应用程序?
I have been assigned to create a web app for the iPhone, and I was supposed to try jQuery Mobile for developing as it supports many platforms.
- Is PHP a requirement for creating iPhone web apps?
- What other ways can we create an effective web app similar to native apps?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
PHP 不是必需的。我目前正在使用 jQuery Mobile + PhoneGap 创建“本机”应用程序。实际上,它是嵌入在瘦本机应用程序外壳中的浏览器或 Web 视图。
如果您想要真正的原生 UI 元素,那么您还可以尝试 Titanium Appcelerator。
就我个人而言,我发现 Appcelerator 的开发速度有点慢。每次我更改 UI 元素时,我都必须等待 30 秒才能将其部署到模拟器并查看它是否有效。使用 jQuery Mobile 和PhoneGap 我可以通过浏览器完成很多 UI 工作。
PHP is not a requirement. I'm currently using jQuery Mobile + PhoneGap to create a "native" app. Effectively it is a browser or webview embedded in a thin native app shell.
If you want true native UI elements then you can also try out Titanium Appcelerator.
Personally I found Appcelerator to be a bit slower to develop in. Everytime I changed a UI element I would have to wait 30 seconds to deploy it to the emulator and see if it worked. With jQuery Mobile & PhoneGap I can do a lot of my UI work from a browser.
PHP 不是创建 iPhone Web 应用程序的必要条件。您应该能够使用您喜欢的任何后端编程语言。 jQuery 应该无需特定的服务器端技术即可工作,因为它在客户端执行。
PHP is not a requirement for creating iPhone web apps. You should be able to use whatever back end programming language you like. jQuery should work without needing a specific server side technology, as it executes on the client side.