`
- 浏览:
171902 次
- 性别:
- 来自:
河北省
-
document.all.WebBrowser.ExecWB
页面打印的所有用法如下:
<OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0></OBJECT>
<input name=Button onClick=document.all.WebBrowser.ExecWB(1,1) type=button value=打开>
<input name=Button onClick=document.all.WebBrowser.ExecWB(2,1) type=button value=关闭所有>
<input name=Button onClick=document.all.WebBrowser.ExecWB(4,1) type=button value=另存为>
<input name=Button onClick=document.all.WebBrowser.ExecWB(6,1) type=button value=打印>
<input name=Button onClick=document.all.WebBrowser.ExecWB(6,6) type=button value=直接打印>
<input name=Button onClick=document.all.WebBrowser.ExecWB(7,1) type=button value=打印预览>
<input name=Button onClick=document.all.WebBrowser.ExecWB(8,1) type=button value=页面设置>
<input name=Button onClick=document.all.WebBrowser.ExecWB(10,1) type=button value=属性>
<input name=Button onClick=document.all.WebBrowser.ExecWB(17,1) type=button value=全选>
<input name=Button onClick=document.all.WebBrowser.ExecWB(22,1) type=button value=刷新>
<input name=Button onClick=document.all.WebBrowser.ExecWB(45,1) type=button value=关闭>
遇到如下问题:
此时页面设置为:
修改为:
则:
分享到:
Global site tag (gtag.js) - Google Analytics
相关推荐
document.all.WebBrowser.ExecWB(6,6) 直接打印 document.all.WebBrowser.ExecWB(8,1) 页面设置 document.all.WebBrowser.ExecWB(7,1) 打印预览 3 隐藏不打印的页面元素和分页 CSS 有个Media 属性,可以分开...
<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(1,1):打开文件 * document.all.WebBrowser.ExecWB(4,1):另存为 * document.all.WebBrowser.ExecWB(10,1):属性 * document.all.WebBrowser.ExecWB(6,1):打印 * document.all....
- **`document.all.WebBrowser.ExecWB(1,1)`**:该事件会使当前页面在新的浏览器窗口中打开。 - **`document.all.WebBrowser.ExecWB(4,1)`**:此操作通常表示打印当前页面。 - **`document.all.WebBrowser.ExecWB(10...
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 ...
<INPUT onclick="document.all.WebBrowser.ExecWB(1,1)" type="button" value="打开" name="Button1"> ``` 此代码片段用于打开当前网页。`ExecWB()`方法通常用于IE浏览器中,第一个参数表示操作类型(如`1`表示打开...
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....
关闭所有" onclick="document.all.WebBrowser.ExecWB(2,1);"> ``` 在上述示例中,我们通过 `onclick` 属性绑定点击事件处理函数,当用户点击按钮时,会调用 `WebBrowser.ExecWB` 方法来执行相应的命令。 #### 六、...
document.all.WebBrowser.ExecWB(6, 6) // 直接打印 document.all.WebBrowser.ExecWB(8, 1) // 页面设置 document.all.WebBrowser.ExecWB(7, 1) // 打印预览 在隐藏不打印的页面元素和分页中,可以使用CSS的Media...
直接预览打印" onclick="document.all.WebBrowser.ExecWB(6, 6)"> 页面" onclick="document.all.WebBrowser.ExecWB(8, 1)"> 打印预览" onclick="document.all.WebBrowser.ExecWB(7, 1)"> ``` 在上面的代码中,`...
新建页面" onclick='document.all.WebBrowser.ExecWB(8,1)' /> <!-- 打印预览按钮 --> 打印预览" onclick='document.all.WebBrowser.ExecWB(7,1)' /> function dayin() { if (window.confirm("确认打印?")) ...
<input onclick="document.all.WebBrowser.ExecWB(6,6)" type="button" value="直接打印"> <input onclick="document.all.WebBrowser.ExecWB(8,1)" type="button" value="页面设置"> <input onclick="document.all....
<INPUT onclick=document.all.WebBrowser.ExecWB(1,1) type=button value= name=Button1> ``` 此代码利用 `ExecWB` 方法执行浏览器操作,参数 (1,1) 表示显示当前页面的 URL。 ### 3. 执行浏览器动作:打印预览 ``...
打印 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....
对象绑定事件 document.all.xxx.detachEvent("onclick",a); 插件数目 navigator.plugins 取变量类型 typeof($js_libpath) == "undefined" 下拉框 下拉框.options[索引] 下拉框.options.length 查找对象 ...
例如,在文档中的示例中多次出现 `document.all.WebBrowser.ExecWB()` 这样的调用,这里的 `WebBrowser` 就是通过 `document.all` 获取的一个对象。 **示例:** ```javascript document.all.WebBrowser.ExecWB(1, ...
直接预览打印" onclick="document.all.WebBrowser.ExecWB(6,6)"> 后退" onclick="document.all.WebBrowser.ExecWB(8,1)"> 打印预览" onclick="document.all.WebBrowser.ExecWB(7,1)"> ``` 这里的`ExecWB`方法接收两...