Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道我必须使用的元标记才能在页面加载后隐藏 safari 或任何其他移动浏览器地址栏?
这有效:
window.onload = function() { setTimeout(function(){window.scrollTo(0, 1);}, 1); }
使用 JavaScript 将页面向下滚动 1px。这样做会自动隐藏地址栏。