这是我在ajax加载上更改url的代码
$.ajax({
url: url,
success: function (data) {
$(selector).html(data);
var title = data.match("<title>(.*?)</title>")[1]; // get title of loaded content
window.history.pushState( {page : 0} , document.title, window.location.href ); // store current url.
window.history.pushState( {page : 1} , title, url ); // Change url.
document.title = title; // Since title is not changing with window.history.pushState(),
//manually change title. Possible bug with browsers.
window.onpopstate = function (e) {
window.history.go(0);
};
}
});
当我点击返回时,上一页正在加载。如果我再次点击则没有任何反应。再单击一下,它将转到第一页。经过一些测试后我发现,在每个ajax加载的后退按钮上有2个相同的页面
我还需要一个代码来点击转发按钮
来获取历史记录答案 0 :(得分:1)
主持人删除了我的帖子,因为我确实提供了一些代码,以便尝试提供帮助。
但我仍然会尝试举例:
假设您的代码是由onclick事件触发的。
$(function() {
function load(url, push) {
$.ajax({
url: url,
success: function (data) {
var title = data.match("<title>(.*?)</title>")[1];
document.title = title;
if (push) {
history.pushState(null, title, url);
}
}
});
}
$(document).click(function(e) {
if (e.target.nodeName === 'A') {
var url = $(e.target).attr('href');
if (url.indexOf('#') !== 0) {
load(url, true);
e.preventDefault();
}
}
});
$(window).bind('popstate', function(e) {
load(window.location.href, false);
});
});