我正在创建一个脚本来监听浏览器后退按钮并加载上一页。我是 jquery 和 javascript 的新手(一个 php 人)。在重新发明这个之前,我已经在整个网络上搜索了一个图书馆。但是由于我在我的 ajax 链接中使用了很多参数,所以我不能使用这些库。我承认这是我的错误,因为我不知道如何使用如此复杂的系统。所以我在想如果创建一个系统如下。
// get the contents of a particular div and save as an object/associative array
// { hash : pageNumber, html : content}
function save_history(div){
var content = $(div).html();
// increment the page number and add hash tags to the URL
}
// Listen to the browser hash value change
$(window).bind('hashchange', function () {
hash = window.location.hash;
if(hashValue){
load_history(hashValue);
}
});
// Load data from history
function load_history(id){
// fetch the content based on the hashvalue
$(div).html(content);
}
使用这个有什么问题吗?当大量内容保存为对象时,这会使页面无响应或使浏览器崩溃吗?如果它导致这样的问题,我不想浪费我的时间。