window history back (-1) not working

后端 未结 2 1330
误落风尘
误落风尘 2021-01-23 21:25

I have use below code to back for the previous page, but it\'s not working. the alert box still popup even i click ok on the page. actually there have 3 page include this windo

2条回答
  •  醉梦人生
    2021-01-23 21:52

    Use: window.history.back() instead .go();

    http://www.w3schools.com/jsref/met_his_back.asp

    or use:

    window.alert("Please choose Type of Redemption");
    setTimeout(function(){
      window.history.go(-1);
    },500);
    

提交回复
热议问题