在做页面时,用户要求,不同的分辨率,弹出窗口的位置不同,我想是不是先获得屏幕宽度,然后付值给变量,再在onclick中设置参数 代码如下: [removed] alert(screen.width+”*”+screen.height) [removed] 代码如下: [removed] function centerWindow(url,w,h){ l=(screen.width-w)/2 t=(screen.height-h)/2 window.open(url,”,’left=’+l+’,top=’+t+’,width=’+w+’,height=’+h) } [removed] <inp