论坛首页 入门技术论坛

window.open打开窗口最大化、菜单栏、工具栏、标题栏、参数传递

浏览 19171 次
该帖已经被评为新手帖
作者 正文
   发表时间:2007-11-21  
  1. window.open打开窗口时要使窗口去掉菜单栏、工具栏、标题栏,达到窗口最大化,可以采用下面的方法:
    js 代码
    1. ///window.open(document.location, '窗体名称', 'fullscreen');//这句打开并去掉所有栏,
    2. //连系统任务栏都盖住
    3. //window.open(document.location, '窗体名称', '');//只是打开一个新窗口   
    4. //window.open(document.location,'窗体名称','fullscreen,scrollbars');//带滚动条   
    5. window.open(document.location,'maxwindow','toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=no,status=no'); 
    6. //最简单是这样window.open(document.location,"_blank","a");
    7. //这句可以打开新的窗口并且可以调节各个栏的可见性
    8. //toolbar工具栏,location地址栏,directories链接栏,menubar菜单栏,scrollbars滚动条,resizable可否改变大小,status状态栏
    9. opener=null;//没有这句,关闭时有提示,ie5.5以上有效
    10. //window.open('窗体名称');// 关闭制定窗口  
    11. window.close();//关闭当前窗口  
  2.   打开新窗口传递参数处理          第一种方法:
    代码
    1. <script language="javascript">  
    2. ///window.open(document.location, 'maxwindow', 'fullscreen');   
    3. //window.open(document.location, 'maxwindow', '');   
    4. //window.open(document.location,'maxwindow','fullscreen,scrollbars')   
    5. window.open(document.location+‘?username=zhongguo’,'maxwindow','toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=no,status=no');   
    6. opener=null;//没有这句,关闭时有提示,ie5.5以上有效   
    7. window.close();   
    8. </script>  
   发表时间:2008-08-13  
想要关闭打开的窗口怎么操作??
0 请登录后投票
   发表时间:2008-08-15  
<!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">
var subwindow;
function opensubwindow(){
	subwindow = window.open("index.html","maxwindow","");
}
function closesubwindow(){
	if(subwindow){
		subwindow.close();
	}
}
</script>
</head>
<body>
<input type="button" value="dakai" onclick="javascript:opensubwindow();" id="asdf" name="asdf"/>
<input type="button" value="kankan" onclick="javascript:closesubwindow();" id="dd" name="dd"/>
</body>
</html>
0 请登录后投票
论坛首页 入门技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics