1. 程式人生 > >js屏蔽手機的物理返回鍵

js屏蔽手機的物理返回鍵

gpo window 返回鍵 屏蔽 doc sha 必須 his pre

$(document).ready(function() {
    if (window.history && window.history.pushState) {
            $(window).on(‘popstate‘, function () {
            window.history.pushState(‘forward‘, null, ‘#‘);
            window.history.forward(1);
            });
        }
            window.history.pushState(‘forward‘, null, ‘#‘); //在IE中必須得有這兩行
            window.history.forward(1);
});

  

js屏蔽手機的物理返回鍵