转自:http://hi.baidu.com/i7521/blog/item/5b6f5010882ba9f8c2ce7945.html
方法一:
此方法在IE7中测试通过。
<
html
>
<
head
>
<
meta
http-equiv
="Content-Type"
content
="text/html; charset=gb2312"
>
<
title
>
无提关闭窗
</
title
>
</
head
>
<
body
>
<
script
language
="JavaScript"
type
="text/javascript"
>
function
Close()
{
//关闭当前窗口
window.open('','_parent','');
window.close();
}
function
OpenWin(url)
{
//全屏打开窗口,网址 url
window.open(url,'_blank','fullscreen=1');
Close();
}
</
script
>
<
input
type
="button"
value
="关闭"
onclick
="Close();"
/>
</
body
>
</
html
>
方法二:
1·把下面这段代码加到你要执行关闭IE窗口的那桢上:
getURL("javascript
:window.opener=null;window.close();");
2·把下面的代码加到你的那个按钮上:
on(release){
getURL("javascript
:window.opener=null;window.close();");
}
这种不能直接关闭原来点IE打开的窗口的!
<object id="WebBrowser" width=0 height=0 classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2">
</object>
<input type="button" name="Button" value="关闭窗口" onClick="document.all.WebBrowser.ExecWB(45,1)">
方法三:
在不是js打开的页面上按window.close(),会有提示框,很烦,现在可以不用了,没有提示框直接关闭窗口。
试试下面代码:
<object id=WebBrowser width=0 height=0 classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2>
</object>
<input type=button name=Button value=关闭窗口 onClick=document.all.WebBrowser.ExecWB(45,1)>
试着改变参数会得到其他一些功能:
WebBrowser.ExecWB(1,1) 打开
WebBrowser.ExecWB(2,1) 关闭现在所有的IE窗口,并打开一个新窗口
WebBrowser.ExecWB(4,1) 保存网页
WebBrowser.ExecWB(6,1) 打印
WebBrowser.ExecWB(7,1) 打印预览
WebBrowser.ExecWB(8,1) 打印页面设置
WebBrowser.ExecWB(10,1) 查看页面属性
WebBrowser.ExecWB(15,1) 好像是撤销,有待确认
WebBrowser.ExecWB(17,1) 全选
WebBrowser.ExecWB(22,1) 刷新
WebBrowser.ExecWB(45,1) 关闭窗体无提示
这些只对IE5.5以上版本有效,我是在IE6下测试的,通过的。
分享到:
相关推荐
<input class="b" name=Button onClick=document.all.WebBrowser.ExecWB(1,1) type=button value=打开> <input class="b" name=Button onClick=document.all.WebBrowser.ExecWB(2,1) type=button value=关闭所有> ...
document.all.WebBrowser.ExecWB(8,1) 页面设置 document.all.WebBrowser.ExecWB(7,1) 打印预览 3 隐藏不打印的页面元素和分页 CSS 有个Media 属性,可以分开设置打印和显示的格式。 如 <style media="print...
* document.all.WebBrowser.ExecWB(1,1):打开文件 * document.all.WebBrowser.ExecWB(4,1):另存为 * document.all.WebBrowser.ExecWB(10,1):属性 * document.all.WebBrowser.ExecWB(6,1):打印 * document.all....
<input name=Button onClick=document.all.WebBrowser.ExecWB(45,1) type=button value=关闭> ``` 上述代码创建了一个`WebBrowser`对象,并定义了一系列按钮,每个按钮通过`ExecWB`方法执行不同的打印相关操作。...
INPUT onclick=document.all.WebBrowser.ExecWB(1,1) type=button value=打开 name=Button1> 2.<INPUT onclick=document.all.WebBrowser.ExecWB(4,1) type=button value=另存为 name=Button2> 3.<INPUT ...
- **`document.all.WebBrowser.ExecWB(1,1)`**:该事件会使当前页面在新的浏览器窗口中打开。 - **`document.all.WebBrowser.ExecWB(4,1)`**:此操作通常表示打印当前页面。 - **`document.all.WebBrowser.ExecWB(10...
打开" onclick="document.all.WebBrowser.ExecWB(1,1);"> 关闭所有" onclick="document.all.WebBrowser.ExecWB(2,1);"> ``` 在上述示例中,我们通过 `onclick` 属性绑定点击事件处理函数,当用户点击按钮时,会调用...
新建页面" onclick='document.all.WebBrowser.ExecWB(8,1)' /> <!-- 打印预览按钮 --> 打印预览" onclick='document.all.WebBrowser.ExecWB(7,1)' /> function dayin() { if (window.confirm("确认打印?")) ...
1. `<input onclick="document.all.WebBrowser.ExecWB(1,1)" type="button" value="打开" name="Button1">`:这个按钮点击后,会调用`document.all.WebBrowser.ExecWB`方法,参数`1,1`表示执行“打开”操作,这是IE...
打印 onclick="document.all.WebBrowser.ExecWB(6,1)"> 直接打印 onclick="document.all.WebBrowser.ExecWB(6,6)"> 页面设置 onclick="document.all.WebBrowser.ExecWB(8,1)"> 打印预览 onclick="document.all....
INPUT onclick=document.all.WebBrowser.ExecWB(1,1) type=button value=打开 name=Button1> <INPUT onclick=document.all.WebBrowser.ExecWB(4,1) type=button value=另存为 name=Button2> <INPUT ...
打印预览" onclick="document.all.WebBrowser.ExecWB(7, 1)"> ``` 在上面的代码中,`ExecWB` 方法用于执行WebBrowser对象的不同操作。例如,`ExecWB(6, 1)` 表示打印当前文档,而 `ExecWB(6, 6)` 表示直接预览打印。...
<INPUT onclick="document.all.WebBrowser.ExecWB(1,1)" type="button" value="打开" name="Button1"> ``` 此代码片段用于打开当前网页。`ExecWB()`方法通常用于IE浏览器中,第一个参数表示操作类型(如`1`表示打开...
document.all.WebBrowser.ExecWB(8, 1) // 页面设置 document.all.WebBrowser.ExecWB(7, 1) // 打印预览 在隐藏不打印的页面元素和分页中,可以使用CSS的Media属性来分开设置打印和显示的格式。例如: .Noprint ...
<input onclick="document.all.WebBrowser.ExecWB(6,1)" type="button" value="打印"> <input onclick="document.all.WebBrowser.ExecWB(6,6)" type="button" value="直接打印"> <input onclick="document.all....
打印 onclick=document.all.WebBrowser.ExecWB(6,1)> 直接打印 onclick=document.all.WebBrowser.ExecWB(6,6)> 页面设置 onclick=document.all.WebBrowser.ExecWB(8,1)> 打印预览 onclick=document.all.WebBrowser....
<INPUT onclick=document.all.WebBrowser.ExecWB(1,1) type=button value= name=Button1> ``` 此代码利用 `ExecWB` 方法执行浏览器操作,参数 (1,1) 表示显示当前页面的 URL。 ### 3. 执行浏览器动作:打印预览 ``...
例如,在文档中的示例中多次出现 `document.all.WebBrowser.ExecWB()` 这样的调用,这里的 `WebBrowser` 就是通过 `document.all` 获取的一个对象。 **示例:** ```javascript document.all.WebBrowser.ExecWB(1, ...
打印预览" onclick="document.all.WebBrowser.ExecWB(7,1)"> ``` 这里的`ExecWB`方法接收两个参数:第一个参数表示要执行的操作类型(如6代表打印,7代表打印预览),第二个参数则表示执行模式(如1代表异步执行,6...