我有一个页面,在init上调用一个带页码的函数...
myApp.onPageInit('content', function (page) {
var page = page.query.page;
my_function(page);
});
第一次用
调用<a href=“content.html?page=1”>…</a>
然后在底部我有
<a href=“content.html?page=1” class=“prev”>prev page</a>
<a href=“content.html?page=2” class=“next”>next page</a>
但点击我有白页...... 如果我添加 reloadPages:true 似乎有效,但我的后页有问题...
然后,如何以正确的方式重新加载当前页面?
由于