如何在 jQueryMobile 中更改文档上的页面

发布于 2024-11-17 12:33:06 字数 199 浏览 6 评论 0原文

我正在尝试更改文档就绪页面,

$.mobile.changePage('#loginPage');

但它会引发 404 错误:

"NetworkError: 404 Not Found - http://localhost/mBanka/v5/loginPage"

I'm trying to change page on document ready

$.mobile.changePage('#loginPage');

but it throws a 404 error:

"NetworkError: 404 Not Found - http://localhost/mBanka/v5/loginPage"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

善良天后 2024-11-24 12:33:06

查看 jQM 事件 http://jquerymobile.com /demos/1.0b1/#/demos/1.0b1/docs/api/events.html

$('div').live('pageshow',function(event, ui){
  alert('This page was just hidden: '+ ui.prevPage);
});

Look into jQM events http://jquerymobile.com/demos/1.0b1/#/demos/1.0b1/docs/api/events.html

$('div').live('pageshow',function(event, ui){
  alert('This page was just hidden: '+ ui.prevPage);
});
守望孤独 2024-11-24 12:33:06

这看起来像是一个没有仔细阅读文档的例子。 :)

如果引用同一文档中的页面,则需要传递 jQuery 对象。这应该有效。

$.mobile.changePage($('#loginPage'));

如果没有 - 在您的问题中添加更多信息

It looks like an example of not reading the docs carefully. :)

You need to pass a jQuery object if referencing page in the same document. This should work.

$.mobile.changePage($('#loginPage'));

If not - put more info in your question

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文