在Windows 8应用中,history.back()
和history.forward()
无法执行,因此我想要恢复数组上的所有历史记录以使用$.mobile.changePage();
但“如何解析/浏览历史记录?”
想法?
THX。
答案 0 :(得分:1)
为什么不在每次jQuery mobile api中触发页面加载事件时创建一个客户端javascript数组并添加一个新条目?
var myPageHistory = [];
$(document).bind('pageload', function( event, data ){
myPageHistory.push(data.url); // add the page to the history array
})