Is it possible to onclick=“history.clear();”

后端 未结 4 2117
滥情空心
滥情空心 2021-01-02 03:36

I\'m going to implement logout button in my PhoneGap application, which will return the user into authentication page (with cleared fields). For the button

4条回答
  •  自闭症患者
    2021-01-02 03:51

    I have never developed any PhoneGap, but in web applications you can use code below.

    try window.location.replace(url);

    after redirection there no way to go previous page.

提交回复
热议问题