2

我使用此代码显示/隐藏div

$("[id*=viewMeButton]").click(function(){
     $("[id*=viewMe]").toggle();
     $("[id*=viewMeButton]").show(); 
});

同样,在 Jquery Mobile 中,可以显示/隐藏 HTML 页面。

例如在 LinkedIn 应用程序中。

在 LinkedIn 移动应用程序中,如果我们单击该in图标,则表示它显示/隐藏页面。就像我需要的那样。

4

1 回答 1

0
$.mobile.changePage()

从一页更改为另一页

$.mobile.loadPage()

加载外部页面,增强其内容,并将其插入 DOM。

http://jquerymobile.com/test/docs/api/methods.html

于 2012-12-10T06:22:43.727 回答