Google Chrome 25.x 是否不尊重 window.open() 方法参数列表中的“可调整大小”选项。以下代码在 IE9 和 IE10 中运行良好,不允许用户调整窗口大小,但在 Chrome 25.0.x 中它仍然允许我调整窗口大小。我试过 resizable=0 但没有区别。
<!DOCTYPE html>
<html>
<head>
<script>
function openWin()
{
myWindow=window.open('','','width=300,height=200,resizable=no');
myWindow.document.write("<p>This is 'myWindow'</p>");
myWindow.focus();
}
</script>
</head>
<body>
<input type="button" value="Open window" onclick="openWin()" />
</body>
</html>
有解决方法吗?