如何在手机间隙创建本地 HTML 页面
我正在电话间隙中执行应用程序,但我有一个问题,为了切换视图,我不知道如何创建另一个视图。但是当我用谷歌搜索时,我得到了一些相关信息,例如,我创建了一个本地 html 文件,然后使用 htmlcode 我可以切换视图。
如果有人有任何与此相关的信息,请给我一些想法。
I am doing the application in phone gap,But I have a problem that for switching the view,I dont know how to create a another view. But when I google it I get some relevant informaion like, I have create a local html file and then using the htmlcode i can switch the view.
If any one is having any relevant information regarding this please give me some idea.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我的方法是使用 ajax 加载其他页面。本质上我有多个 html 文件和我的主 UI。单击按钮时,我会触发 ajax 请求来加载该新页面,然后使用 CSS 动画(获得硬件加速)对其进行动画处理。
请记住将新页面的数据加载到容器 div 中,以便 UI 的其余部分可以保持不变。
My method for doing this is using ajax to load in my other pages. Essentially I have multiple html files and my main UI. When a button is clicked I fire an ajax request to load that new page and then animate it in using CSS animations ( which get hardware accelerated ).
remember to load the new page's data into a container div, so the rest of your UI can stay put.
您可以为单独的视图创建单独的 HTML 文件,并使用 JQuery 来实现功能。假设当您单击按钮时,只需重定向到另一个 HTML 文件或任何您需要的文件。
You can create a separate HTML file for a separate view and use JQuery for functionality. Suppose that when you click on button, just redirect to another HTML file or whatever your need is.