iscroll下,如何去掉手机地址栏

document.getElementsByTagName("body")[0].style.height = document.documentElement.clientHeight + 70 + "px";//将body高度设为高出显示区域的高度。
setTimeout(hideURLbar, 0);
function hideURLbar() {
  window.scrollTo(0, 1);
  document.getElementsByTagName("body")[0].style.height = window.innerHeight + "px";//隐藏完之后,再将body高度设回满屏高度。
}

posted on 2012-11-28 16:35  一青鸟一  阅读(470)  评论(0编辑  收藏  举报

导航