window.open('''',' location = no')地址栏在ie中不可见

时间:2013-07-24 09:23:33

标签: javascript

<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中运行)。在上面的代码中,单击时会打开新窗口      按钮。当“位置”值设置为“否”时,地址栏不可见。但是当我们将位置值设置为时,它应该被禁用  '没有'。期待解决方案

2 个答案:

答案 0 :(得分:1)

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

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

即便如此,所有浏览器都支持Disabled Setting Location By Default。对于IE的情况。它以IE7的版本开始。

所以,如果它不可见,也不低于IE7。我建议你重新安装浏览器。

答案 1 :(得分: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>