$(function(){
pushHistory();
window.addEventListener("popstate", function(e) {
alert("捕获成功");
});
function pushHistory() {
var state = {
title: "myCenter",
url: "__SELF__"
};
window.history.pushState(state, state.title, state.url);
}
pushHistory();
window.addEventListener("popstate", function(e) {
alert("捕获成功");
});
function pushHistory() {
var state = {
title: "myCenter",
url: "__SELF__"
};
window.history.pushState(state, state.title, state.url);
}