IE无提示关闭窗口。。
时间:2007-02-18 来源:PHP爱好者
大家一定很讨厌 window.close() 弹出的确认关闭窗口吧
下面介绍两种无提示关闭窗口。。
下面介绍两种无提示关闭窗口。。
提示:您可以先修改部分代码再运行 <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<object id="WebBrowser" width=0 height=0 classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></object>
<input type="button" name="Button" value="方法1关闭窗口" onClick="document.all.WebBrowser.ExecWB(45,1)">
<input type="button" onClick="window.opener = 'xxx';window.close();" value="方法2IE6无提示关闭窗口">
</body>
</html>
提示:您可以先修改部分代码再运行
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<object id="WebBrowser" width=0 height=0 classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></object>
<input type="button" name="Button" value="方法1关闭窗口" onClick="document.all.WebBrowser.ExecWB(45,1)">
<input type="button" onClick="window.opener = 'xxx';window.close();" value="方法2IE6无提示关闭窗口">
</body>
</html>
提示:您可以先修改部分代码再运行
相关阅读 更多 +