Javascript history function not working for web page served from homescreen on iOS 6

后端 未结 3 1113
长发绾君心
长发绾君心 2021-02-12 11:48

I\'ve seen some other posts about iOS 6\'s new behaviors with Web sites saved to / launched from the home screen. On iOS 5 (and earlier), we were able to use the Javascript Hist

3条回答
  •  深忆病人
    2021-02-12 12:06

    Try one of them

    window.history.pushState

    http://thelink.is/history-api-ios-bug

    OR

    window.history.pushState(data, title, 'a/new/url#');

    OR

    window.history.pushState(data, title, 'a/new/url');

    window.location.hash = 'new';

提交回复
热议问题