全屏全屏全屏全屏

window.open(url,"","fullscreen=yes");

sc=window.open(url,"","resizable=yes,scrollbars=yes");
sc.resizeTo((screen.availWidth),(screen.availHeight));
sc.moveTo(0,0)

=======

window.open打开窗口时要使窗口去掉菜单栏、工具栏、标题栏,达到窗口最大化,可以采用下面的方法:
js 代码
///window.open(document.location, '窗体名称', 'fullscreen');//这句打开并去掉所有栏,
//连系统任务栏都盖住
//window.open(document.location, '窗体名称', '');//只是打开一个新窗口
//window.open(document.location,'窗体名称','fullscreen,scrollbars');//带滚动条
window.open(document.location,'maxwindow','toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=no,status=no');
//最简单是这样window.open(document.location,"_blank","a");
//这句可以打开新的窗口并且可以调节各个栏的可见性
//toolbar工具栏,location地址栏,directories链接栏,menubar菜单栏,scrollbars滚动条,resizable可否改变大小,status状态栏
opener=null;//没有这句,关闭时有提示,ie5.5以上有效
//window.open('窗体名称');// 关闭制定窗口
window.close();//关闭当前窗口
打开新窗口传递参数处理 第一种方法:
代码
<script language="javascript">
///window.open(document.location, 'maxwindow', 'fullscreen');
//window.open(document.location, 'maxwindow', '');
//window.open(document.location,'maxwindow','fullscreen,scrollbars')
window.open(document.location+‘?username=zhongguo’,'maxwindow','toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizable=no,status=no');
opener=null;//没有这句,关闭时有提示,ie5.5以上有效
window.close();
</script>


================
<html>
<body>

<object id=min type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11">
<param name="Command" value="MINIMIZE">
</object>
<input type=button οnclick="min.Click()" value="最小化">

<OBJECT id=max type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11">
<param name="Command" value="MAXIMIZE">
</object>
<input type=button οnclick="max.Click()" value="最大化">

<OBJECT id=close type="application/x-oleobject" classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11">
<param name="Command" value="CLOSE">
</object>
<input type=button οnclick="close.Click()" value="关闭窗口">

</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值