如何通过我的应用程序永久禁用或隐藏移动浏览器的地址栏。 jquery mobile是否有选项或有其他方式吗?这是我用来初始加载页面的事件。它只是一个单页应用程序,只能在黑莓本机浏览器中看到(没有其他移动设备)
<script type="text/javascript">
$(document).bind('pageinit', function (event) {
//loads the applications html into the DOM
loadHomePage();
});
</script>