0

我已经在我的应用程序中实现了这段代码。如何更改它以防止它滚动和 URL 出现在浏览器中?

function openWindow() {
    window.open('default.aspx', null, 'height=200, width=400, status=yes, toolbar=no, menubar=no, location=no');
    return false;
}
4

1 回答 1

1

您无法隐藏地址栏,这是浏览器不再让您关闭的东西。

防止滚动可能最好通过您打开的任何内容中的 CSS 来处理。样式块中的以下内容

body {overflow: hidden}

应该停止出现滚动条。

于 2013-03-10T08:53:39.057 回答