强制 弹出 窗口 javascript

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns=" http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text ml; charset=gb2312" />
<title>无标题文档</title>
</head>

 <script type="text/javascript">
 function openwindowUpd(url,name,iWidth,iHeight)
 {
   var url;   //转向网页的地址;
   var name;    //网页名称,可为空;
   var iWidth;  //弹出窗口的宽度;
   var iHeight;  //弹出窗口的高度;
   var iTop = (window.screen.availHeight-30-iHeight)/2;       //获得窗口的垂直位置;
   var iLeft = (window.screen.availWidth-10-iWidth)/2;           //获得窗口的水平位置;
   return window.open(url,name,'height='+iHeight+',,fullscreen,innerHeight='+iHeight+',width='+iWidth+',innerWidth='+iWidth+',top='+iTop+',left='+iLeft+',toolbar=no,menubar=no,scrollbars=yes,resizeable=no,location=no,status=no');
}    
  function test(){
  openwindowUpd('eee.html',"开始打字",1000,600);
}
</script>
</head>
<body>
<a href ="#" onclick="test()">kk</a>


</body>
< ml>

 

posted on 2010-03-02 17:04  草原和大树  阅读(421)  评论(0编辑  收藏  举报