WebBrowser.ExecWB方法

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>WebBrowser.ExecWB方法</title>
</head>
<body>
<object classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2" id="wb" width=0 height=0></object>
<input name=Button onClick=document.all.wb.ExecWB(1,1) type=button value=打开>
<br>ie8下执行这个按钮会提示错误,不知道什么原因
<input name=Button onClick=document.all.wb.ExecWB(2,1) type=button value=关闭现在所有的IE窗口,并打开一个新窗口>
<br>
<input name=Button onClick=document.all.wb.ExecWB(4,1) type=button value=保存网页>
<br>
<input name=Button onClick=document.all.wb.ExecWB(6,1) type=button value=打印>
<br>
<input name=Button onClick=document.all.wb.ExecWB(6,6) type=button value=直接打印>
<br>
<input name=Button onClick=document.all.wb.ExecWB(7,1) type=button value=打印预览>
<br>
<input name=Button onClick=document.all.wb.ExecWB(8,1) type=button value=打印页面设置>
<br>
<input name=Button onClick=document.all.wb.ExecWB(10,1) type=button value=查看页面属性>
<br>
<input name=Button onClick=document.all.wb.ExecWB(15,1) type=button value=好像是撤销,有待确认>
<br>
<input name=Button onClick=document.all.wb.ExecWB(17,1) type=button value=全选>
<br>
<input name=Button onClick=document.all.wb.ExecWB(22,1) type=button value=刷新>
<br>
<input name=Button onClick=document.all.wb.ExecWB(45,1) type=button value=关闭窗体无提示2、分页打印>
</body>
</html>
时间: 2024-10-29 18:03:53

WebBrowser.ExecWB方法的相关文章

WebBrowser.ExecWB

CreateTime--2017年9月22日16:30:10 Author:Marydon js操作浏览器的ExecWB命令 一.准备工作: 以ie浏览器为例,需要更改IE安全级别为:"启用没有标记为安全的ActiveX控件" IE浏览器-工具菜单选项——Internet选项——安全——Internet——自定义级别——启用没有标记为安全的ActiveX控件 否则,执行时,会报错:找不到成员. 二.用法介绍 WebBrowser.ExecWB(1,1)//打开 WebBrowser.E

net(c#)在循环语句中执行WebBrowser.Navigate();方法,每次循环等待网页加载完后继续执行的解决方案

https://blog.csdn.net/zhuzhu837_1/article/details/7794651 原文地址:https://www.cnblogs.com/lihuali/p/10509768.html

WPF中WebBrowser的使用方法及分析

基础知识 WebBrowser类 承载并在HTML文档间导航.在WPF托管代码和HTML脚本间启用互操作性. WebBrowser.Navigate方法(Uri) 异步导航到位于指定Uri处的文档. 命名空间:System.Windows.Controls 程序集:PresentationFramework(在PresentationFramework.dll中) 语法:public void Navigate(Uri source) string szTmp = "http://192.168

网页刷新方法集合

原文:网页刷新方法集合 <input type=button value=刷新 onclick="history.go(0)"> 代码如下: <input type=button value=刷新 onclick="location.reload()"> 代码如下: <input type=button value=刷新 onclick="location=location"> 代码如下: <input

Delphi WebBrowser控件的使用(大全 good)

Delphi WebBrowser控件的使用 WebBrowser控件属性:1.Application      如果该对象有效,则返回掌管WebBrowser控件的应用程序实现的自动化对象(IDispatch).如果在宿主对象中自动化对象无效,程序将返回WebBrowser控件的自动化对象2.Parent       返回WebBrowser控件的父自动化对象,通常是一个容器,例如是宿主或IE窗口3.Containe       返回WebBrowser控件容器的自动化对象.通常该值与Pare

通过WebBrowser控件,实现IE浏览器菜单功能

这篇文章所讲的技术,只支持IE浏览器,请读者注意 WebBrowser控件,是IE浏览器的内置控件.顾名思义,这个控件我们可以看成是浏览器本身.通过WebBrowser控件,可以实现一部分IE浏览器的菜单命令. 1. 使用 首先在画面上要通过<object>标签创建这个控件. <OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0></OBJECT>

你想的到想不到的 javascript 应用小技巧方法

javascript 在前端应用体验小技巧继续积累. 事件源对象 event.srcElement.tagName event.srcElement.type 捕获释放 event.srcElement.setCapture();  event.srcElement.releaseCapture(); 事件按键 event.keyCode event.shiftKey event.altKey event.ctrlKey 事件返回值 event.returnValue 鼠标位置 event.x

C# WinForm开发系列 - WebBrowser

介绍Vs 2005中带的WebBrowser控件使用以及一些疑难问题的解决方法, 如如何正确显示中文, 屏蔽右键菜单, 设置代理等; 收集的文章中有可能还带了一些Asp.Net开发使用微软的WebBrowser进行页面打印方面文章. 01. vs2005中的WebBrowser控件的简单应用 02. WebBrowser控件的简单应用2 03. WebBrowser控件应用:弹出新窗体和关闭窗口 04. WebBrowser控件应用:播放PPT文件 05. WebBrowser控件使用技巧分享

js代码大全(各种方法、属性)《转载》

事件源对象 event.srcElement.tagName event.srcElement.type 捕获释放 event.srcElement.setCapture();  event.srcElement.releaseCapture(); 事件按键 event.keyCode event.shiftKey event.altKey event.ctrlKey 事件返回值 event.returnValue 鼠标位置 event.x event.y 窗体活动元素 document.act