以文本方式查看主题

-  ╋艺 镇╋  (http://wdystv.com/bbs/index.asp)
--  ┣◇网站建设&Web语言  (http://wdystv.com/bbs/list.asp?boardid=4)
----  关闭网页打开指定大小网页方法  (http://wdystv.com/bbs/dispbbs.asp?boardid=4&id=1487)

--  作者:乐魔舞
--  发布时间:2008/5/7 10:11:59
--  关闭网页打开指定大小网页方法

<html>
<script>
  opener=null; //在没有提示的状态下,关闭当前窗口
  window.close();
  window.open ("index.html", "newwindow", "height=800, width=600, toolbar=no, menubar=no, scrollbars=no, resizable=yes, location=no, status=yes,left=0,top=0")
</script>
<body>
</body>
</html>

 

[此贴子已经被作者于2008-5-7 10:14:45编辑过]

--  作者:乐魔舞
--  发布时间:2008/5/7 10:15:01
--  
<html>
<script type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
</script>
<script>
  opener=null; //在没有提示的状态下,关闭当前窗口
  window.close();
 
</script>
<body onload="MM_openBrWindow(\'index.html\',\'\',\'resizable=yes,width=800,height=600\')">
</body>
</html>

--  作者:乐魔舞
--  发布时间:2008/5/7 10:15:27
--  
<!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/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
  opener=null;
  window.close();
</script>
</head>
<body onload="MM_openBrWindow(\'index.html\',\'\',\'width=800,height=580\')">
</body>
</html>