jquerymobile删除隐藏的页面

时间:2012-03-28 17:51:01

标签: jquery jquery-mobile

您好我正在尝试删除一些隐藏页面,这是我的代码。

$(document).bind("mobileinit", function () {
     $(document).bind("pagehide", function () {
          // At this stage works fine, but Don't know how to reference the hidden page
          alert("Hello world");      
     });
 }); 

问题是引用隐藏页面的正确方法是什么?
可以使用each()?

仅列出页面

1 个答案:

答案 0 :(得分:1)

以下是一个例子:

$(document).bind("mobileinit", function () {

  $.mobile.document.bind('pagehide', function (event, ui) {
    $(event.target).remove();
  });

});