如何使用Jquery mobile解析/浏览历史记录

How parse/browse history with Jquery mobile?

本文关键字:浏览 历史 记录 解析 何使用 Jquery mobile      更新时间:2023-09-26

在Windows 8应用程序上,history.back()history.forward()无法执行,所以我想恢复阵列上的所有历史以使用$.mobile.changePage();

但是"如何解析/浏览历史?"

想法?

Thx。

为什么不创建一个客户端javascript数组,并在jQuery移动api中每次触发页面加载事件时添加一个新条目?

var myPageHistory = [];
$(document).bind('pageload', function( event, data ){
myPageHistory.push(data.url); // add the page to the history array
})