`

document.all.WebBrowser.ExecWB(45,1)(转)

阅读更多

转自: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下测试的,通过的。

分享到:
评论

相关推荐

    html调用打印实现打印

    &lt;input class="b" name=Button onClick=document.all.WebBrowser.ExecWB(1,1) type=button value=打开&gt; &lt;input class="b" name=Button onClick=document.all.WebBrowser.ExecWB(2,1) type=button value=关闭所有&gt; ...

    jsp页面如何实现web打印

    document.all.WebBrowser.ExecWB(8,1) 页面设置 document.all.WebBrowser.ExecWB(7,1) 打印预览 3 隐藏不打印的页面元素和分页 CSS 有个Media 属性,可以分开设置打印和显示的格式。 如 &lt;style media="print...

    HTML_Button[1].onclick_事件汇总

    * 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....

    总结javescript打印

    &lt;input name=Button onClick=document.all.WebBrowser.ExecWB(45,1) type=button value=关闭&gt; ``` 上述代码创建了一个`WebBrowser`对象,并定义了一系列按钮,每个按钮通过`ExecWB`方法执行不同的打印相关操作。...

    input按钮的事件处理大全

    INPUT onclick=document.all.WebBrowser.ExecWB(1,1) type=button value=打开 name=Button1&gt; 2.&lt;INPUT onclick=document.all.WebBrowser.ExecWB(4,1) type=button value=另存为 name=Button2&gt; 3.&lt;INPUT ...

    input按钮onclick事件大全

    - **`document.all.WebBrowser.ExecWB(1,1)`**:该事件会使当前页面在新的浏览器窗口中打开。 - **`document.all.WebBrowser.ExecWB(4,1)`**:此操作通常表示打印当前页面。 - **`document.all.WebBrowser.ExecWB(10...

    ExecWB的完整说明

    打开" onclick="document.all.WebBrowser.ExecWB(1,1);"&gt; 关闭所有" onclick="document.all.WebBrowser.ExecWB(2,1);"&gt; ``` 在上述示例中,我们通过 `onclick` 属性绑定点击事件处理函数,当用户点击按钮时,会调用...

    js调用ie打印和预览功能

    新建页面" onclick='document.all.WebBrowser.ExecWB(8,1)' /&gt; &lt;!-- 打印预览按钮 --&gt; 打印预览" onclick='document.all.WebBrowser.ExecWB(7,1)' /&gt; function dayin() { if (window.confirm("确认打印?")) ...

    html事件汇总

    1. `&lt;input onclick="document.all.WebBrowser.ExecWB(1,1)" type="button" value="打开" name="Button1"&gt;`:这个按钮点击后,会调用`document.all.WebBrowser.ExecWB`方法,参数`1,1`表示执行“打开”操作,这是IE...

    通过调用IE内部组件实现PHP打印

    打印 onclick="document.all.WebBrowser.ExecWB(6,1)"&gt; 直接打印 onclick="document.all.WebBrowser.ExecWB(6,6)"&gt; 页面设置 onclick="document.all.WebBrowser.ExecWB(8,1)"&gt; 打印预览 onclick="document.all....

    IE功能汇总

    INPUT onclick=document.all.WebBrowser.ExecWB(1,1) type=button value=打开 name=Button1&gt; &lt;INPUT onclick=document.all.WebBrowser.ExecWB(4,1) type=button value=另存为 name=Button2&gt; &lt;INPUT ...

    asp.net excel打印

    打印预览" onclick="document.all.WebBrowser.ExecWB(7, 1)"&gt; ``` 在上面的代码中,`ExecWB` 方法用于执行WebBrowser对象的不同操作。例如,`ExecWB(6, 1)` 表示打印当前文档,而 `ExecWB(6, 6)` 表示直接预览打印。...

    web开发中常用的input事件汇总

    &lt;INPUT onclick="document.all.WebBrowser.ExecWB(1,1)" type="button" value="打开" name="Button1"&gt; ``` 此代码片段用于打开当前网页。`ExecWB()`方法通常用于IE浏览器中,第一个参数表示操作类型(如`1`表示打开...

    jsp打印功能,经典

    document.all.WebBrowser.ExecWB(8, 1) // 页面设置 document.all.WebBrowser.ExecWB(7, 1) // 打印预览 在隐藏不打印的页面元素和分页中,可以使用CSS的Media属性来分开设置打印和显示的格式。例如: .Noprint ...

    .NET web打印

    &lt;input onclick="document.all.WebBrowser.ExecWB(6,1)" type="button" value="打印"&gt; &lt;input onclick="document.all.WebBrowser.ExecWB(6,6)" type="button" value="直接打印"&gt; &lt;input onclick="document.all....

    ASP.NET中数据库数据导入Excel并打印

    打印 onclick=document.all.WebBrowser.ExecWB(6,1)&gt; 直接打印 onclick=document.all.WebBrowser.ExecWB(6,6)&gt; 页面设置 onclick=document.all.WebBrowser.ExecWB(8,1)&gt; 打印预览 onclick=document.all.WebBrowser....

    网页制作必备(最常用javascript onclick语句40条)

    &lt;INPUT onclick=document.all.WebBrowser.ExecWB(1,1) type=button value= name=Button1&gt; ``` 此代码利用 `ExecWB` 方法执行浏览器操作,参数 (1,1) 表示显示当前页面的 URL。 ### 3. 执行浏览器动作:打印预览 ``...

    JavaScript常用语句精选

    例如,在文档中的示例中多次出现 `document.all.WebBrowser.ExecWB()` 这样的调用,这里的 `WebBrowser` 就是通过 `document.all` 获取的一个对象。 **示例:** ```javascript document.all.WebBrowser.ExecWB(1, ...

    调用IE自带打印功能实现在线打印

    打印预览" onclick="document.all.WebBrowser.ExecWB(7,1)"&gt; ``` 这里的`ExecWB`方法接收两个参数:第一个参数表示要执行的操作类型(如6代表打印,7代表打印预览),第二个参数则表示执行模式(如1代表异步执行,6...

Global site tag (gtag.js) - Google Analytics