<script type="text/javascript">
pushHistory();
window.addEventListener("popstate", function(e) {
window.location.href='index.html';//指定回退的地址
}, false);
function pushHistory() {
var state = {
title: "title",
url: "#" // 本页
};
window.history.pushState(state, "title", "#");
}
</script>