当我在 IE 中使用 JavaScriptwindow.open()
时,最大按钮总是被禁用。
如何启用按钮?我使用 Chrome 和 Firefox 没有问题。
当我在 IE 中使用 JavaScriptwindow.open()
时,最大按钮总是被禁用。
如何启用按钮?我使用 Chrome 和 Firefox 没有问题。
需要设置参数值resizable=yes
试试这个代码:
var url = "www.google.com" // set your url.
window.open(url, "popUp", "resizable=yes");
resizable=yes
添加到该window.open
功能时,它在 iE 中运行良好。
我的代码:
kana = window.open('','kana','menubar=0,location=0,resizable=yes,status=1,width=1,height=1,visible=false,alwaysLowered=yes');