window.open 后的窗口居中

window.open后要使弹出的窗口始终在屏幕的中间,可进行如下设置:
window.open(url,"rulegenerate","status=yes,center=yes,toolbar=no,left="+((screen.width-900)/2)+",top="+((screen.height-400)/2)+",width=900,height=400,location=no,menubar=no,resizable=no,scrollbars=yes");

 

你可能感兴趣的:(window.open)