将一页移动到另一页? - jQuerymobile
我正在使用 jquerymobile 来开发应用程序。这里我想将一页移动到另一页。我使用了 $.mobile.changePage("html file");但是如果我移动页面,那么页面将显示为普通的 html 页面。(控件看起来像普通的 html 页面控件。UI 中没有分配任何内容)
我错过了什么?请指出我。
I am using the jquerymobile for developing app. Here I want to move the one page to another page. I used the $.mobile.changePage("html file"); But If I move the page then the page displays as a normal html page.(The controls looks like normal html page controls. Nothing assigned in the UI)
What I missed ? Please Point out me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它看起来像一个错误,尝试与 jquery 1.4.3 而不是 1.4.4 一起运行 jquery mobile
另外,执行此类操作的默认方法是使用普通的
并让 jqm施展魔法。它的作用相同,但它也可以在非 js 浏览器中工作。如果情况并非如此,请提供更多详细信息。
It looks like a bug, try running jquery mobile together with jquery 1.4.3 instead of 1.4.4
Also the default way to do such a thing is to use a normal
<a href=
and let jqm do the magic. It does the same, but it will also work in non-js browsers. Give more details if that's not the case.