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