如何隐藏iPhone中的Safari Mobile浏览器底部按钮栏? [英] How to hide Safari Mobile browser bottom button bar in iPhone?

查看:1729
本文介绍了如何隐藏iPhone中的Safari Mobile浏览器底部按钮栏?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


< meta name =viewportcontent =width = device-width,initial-scale = 1.0,maximum-scale = 1.0,user-scalable = no/>

< meta name =apple-touch-fullscreencontent =yes/>
< meta name =apple-mobile-web-app-capablecontent =yes/>
< meta name =apple-mobile-web-app-status-bar-stylecontent =black/>

< link rel =apple-touch-iconhref =/ custom_icon.png/>
< link rel =apple-touch-startup-imagehref =/ startup.png>

< script src =http://www.google.com/jsapi>< / script>

< script>
window.top.scrollTo(0,1);
alert('ok');
google.load(jquery,1.4.1);
google.load(jqueryui,1.8.0);
< / script>

< / head>



使用iOS 4.2.1



以上不适合我。浏览器地址栏和底部工具栏仍然存在。我已经尝试了一些教程,但我无法改变任何内容。任何想法?

解决方案

您无法以编程方式在Mobile Safari中隐藏工具栏。

您的用户需要将您的网络应用添加到他们的主屏幕,以便在下次通过点击图标启动您的应用时隐藏条形图。这是通过点击工具栏中的中间按钮,然后选择添加到主屏幕来完成的。您可能需要显示一条消息,通知您的用户执行此操作。


Following is head section:

<head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />

    <meta name="apple-touch-fullscreen" content="yes" />
    <meta name="apple-mobile-web-app-capable" content="yes" />
    <meta name="apple-mobile-web-app-status-bar-style" content="black" />

    <link rel="apple-touch-icon" href="/custom_icon.png"/>
    <link rel="apple-touch-startup-image" href="/startup.png">

    <script src="http://www.google.com/jsapi"></script>

    <script>
      window.top.scrollTo(0, 1);
      alert('ok');
      google.load("jquery", "1.4.1");
      google.load("jqueryui", "1.8.0");
    </script>

</head>

using iOS 4.2.1

Above is not working for me. Browser Address bar and bottom toolbar are still there. I have tried some tutorials but I am unable to change anything. Any idea?

解决方案

You cannot programmatically hide the toolbar in Mobile Safari.

Your users need to add your web app to their home screens in order for the bars to be hidden when they next launch your app by tapping its icon. This is done by tapping the middle button in the toolbar, then choosing Add to Home Screen. You may need to display a message informing your users to do this.

这篇关于如何隐藏iPhone中的Safari Mobile浏览器底部按钮栏?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆