从浏览器中删除地址栏(查看Android上)地址栏、器中、Android

2023-09-11 11:34:17 作者:与往事干杯

有谁知道我可以从Android浏览器中删除地址栏,以便更好地查看我的web应用程序,使它看起来更像是一个本机应用程序?

Does anyone know how I can remove the address bar from the Android browser to better view my web app and make it look more like a native app?

推荐答案

您可以做下一个code

You can do that with the next code

 if(navigator.userAgent.match(/Android/i)){
    window.scrollTo(0,1);
 }

我希望它可以帮助你!

I hope it helps you!