Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用 ajax 加载一些数据并操作给定“详细信息页面”的 DOM。在显示页面之前。重要的是,在此页面的所有加载和操作完成之前,“详细信息页面”的任何内容都不可见。在加载过程中,加载小部件也应该出现。
我试过这个:
$( '#page_series_detail' ).live( 'pageinit',function(event) { AjaxSeriesDetail(); });
但是在这种情况下,所有的加载和操作都发生在页面显示之后。有人给我提示吗?
你应该试试 jQuery Mobile 的pagebeforeshow事件。此事件将在向用户显示页面之前触发。
根据文档
在实际过渡动画开始之前,在我们过渡到的“toPage”上触发。