0
<head>
<script>
function open()
{
win=window.open('','','width=200,height=100,location=no');
win.document.write("<p>This is 'Window'</p>");
win.focus();
}
</script>
</head>
<body>

<input type="button" value="Open window" onclick="open()" />

</body>

请在编辑器中复制以上代码并在您的机器中运行(在 IE 中打开运行)。在上面的代码中,当您单击按钮时会打开新窗口。当“位置”值设置为“否”时,地址栏不可见。但是当我们将位置值设置为“否”时,它应该被禁用。期待解决方案

4

2 回答 2

1

Firefox 3.0 及更高版本默认禁用设置位置。

有关详细信息,请参阅window.open

甚至,Disabled Setting Location By Default 所有浏览器都支持。对于IE的情况。它从IE7版本开始。

因此,如果它不可见,并且不低于 IE7。我建议你重新安装浏览器。

于 2013-07-24T11:14:11.747 回答
0

尝试这个

<!DOCTYPE html>
<html>
<head>
<script>
function openWin()
{
myWindow=window.open('','','width=200,height=100');
myWindow.document.write("<p>This is 'myWindow'</p>");
myWindow.focus();
}
</script>
</head>
<body>

<input type="button" value="Open window" onclick="openWin()" />

</body>
</html>
于 2013-07-24T10:43:50.260 回答