1

我正在为移动页面使用 mmenu ( http://mmenu.frebsite.nl/ ) jQuery 插件,并且我试图始终隐藏 iPhone 上的地址栏。我目前有:

window.addEventListener("load",function() {
      // Set a timeout...
      setTimeout(function(){
      // Hide the address bar!
      window.scrollTo(0, 1);
   }, 0);
});

但这仅在页面加载时隐藏,因此当我单击左侧菜单和右侧菜单按钮并且菜单展开时,地址栏会重新出现。想知道当菜单处于展开状态时是否有办法隐藏地址栏。

4

2 回答 2

1

问题应在最新版本的插件中修复:http: //mmenu.frebsite.nl/download.php#changelog_3_2

于 2013-08-28T13:08:59.800 回答
0

这似乎解决了我的问题。

<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, height=device-height, width=device-width, user-scalable = no">
于 2013-08-16T17:42:04.693 回答