windo.open 打开最大化的窗口 出现错误!
function openMaxWindow(url)
{
var maxWidth = screen.availWidth;
var maxHeight = screen.availHeight;
window.open(url,"doceditwindow","menubar=no,scrollbars=no,width=maxWidth,height=maxHeight,top=0,left=0,status=yes");
}
错在哪里?