브라우저를 감청하여 이전 페이지로 돌아가기 단추를 누르면 크로스 페이지 참조를 실현합니다

1335 단어

h1.html




    
    Title



h1 to h2




h2.html




    
    Title


h2

  h3  ,  h3   “#h2”   

$(function () {
console.log("current is h2 ")
})
$(document).ready(function() {
if (window.history && window.history.pushState) {
$(window).on('popstate', function () {
window.location = "h3.html#h2"
});
}
//window.history.pushState('forward', null, '#');//IE에는 반드시 이 두 줄이 있어야 한다
//window.history.forward(1);
});

h3.html




    
    Title



frame1
frame2






    $(function () {
        console.log(" current is h3 ")
        console.log(location.hash)
        // var tag = location.hash;
        // document.getElementById(tag).click();
        document.getElementById("h2").click();
    })

좋은 웹페이지 즐겨찾기