网上一般有两种方法,第一种就是:
弹出窗口中加上:....top.moveTo(screen.width/2-document.body.clientWidth/2,screen.height/2-document.body.clientHeight/2)很明显这是将脚本加在之后的,这就是说是在程序页面执行到最后,也就是弹出页面后将居中。这就有了反应的时间,就会出现这种情况:在弹出页面后,然后才居中,影响美观,但是特点是方便。
第二种就是:
//居中弹出窗体
function getwindow(URL,width,height)
{
//根据屏幕居中
window.open(URL,'','width='+width+',height='+height+',top='+(screen.height-height)/2+',left='+(screen.width-width)/2);
//下面是根据页面居中
//window.open(URL,...