我使用此代码显示/隐藏div
$("[id*=viewMeButton]").click(function(){
$("[id*=viewMe]").toggle();
$("[id*=viewMeButton]").show();
});
同样,在 Jquery Mobile 中,可以显示/隐藏 HTML 页面。
例如在 LinkedIn 应用程序中。
在 LinkedIn 移动应用程序中,如果我们单击该in
图标,则表示它显示/隐藏页面。就像我需要的那样。