最佳答案
我正在使用jQuery Mobile,我很难理解经典文档准备和jQuery Mobile页面事件之间的差异。
为什么要
<!-- language: lang-js -->
$(document).ready() {
});
比…
$(document).on('pageinit') {
});
What is the order of page events, when you transition from one page to another?
How can I send data from one page to another and is it possible to access data from previous page?