这是一个利用javascript open的时侯获取用户屏幕的分辨率,再设定新开窗口的位置达成的弹出窗口页面居中
<script language="javascript">
<!--
function opencenterwindow(url,width,height){
window.open(url,"","toolbar=no,height="+height+",width="+width+",left="+(window.screen.width-width)/2+",top="+(window.screen.height-height)/2+",location=no,directories=no,menubar=no,scrollbars=no,resizable=no,status=no");
}
//-->
</script>
<a href="javascript:void(0);" onclick="opencenterwindow('http://www.dayanmei.com',800,600)" >弹出窗口页面居中</a>
这是针对新开窗口宽高固定的情况