我正在尝试隐藏所有浏览器中的地址栏。我已经做了足够的搜索并找到了完成这项工作的代码。以下是代码
function openWindow(){
var browser=navigator.appName;
if (browser=="Microsoft Internet Explorer")
{
window.opener=self;
}
window.open("index.html","null","width=900,height=750,toolbar=no,scrollbars=no,location=no,resizable =yes");
window.moveTo(0,0);
window.resizeTo(screen.width,screen.height-100);
self.close();
}
location=no/0 等不工作,地址栏仍然存在。我应该怎么办?如果不可能,那么有没有办法在地址栏中隐藏 URL?