document.all

外语
刘梅老师 2019-07-17 16:57:49

IE对document有个属性是all,表示所有的DOM对象。
网上有人说这句话能判断浏览器是否IE,现在是不行的,因为很多别的浏览器也支持这个,所以,现在这句话没什么用,从语句上理解,就是判断这个网页存不存在DOM的对象,就是存不存在document啦

#document.all#

返回顶部

影响力:2852

VBA 网页 按钮 document.all 求救

描述: .document.all("username").Value=Cells(3,3).document.all("password").Value=Cells(3,6).document.all("submit").Click各位大侠,各位大神,上面第三条语句不能执行,请问我该用何种... .document.all("username").Value = Cells(3, 3) .document.all("password").Value = Cells(3, 6) .document.all("submit").Click各位大侠,各位大神,上面第三条语句不能执行,请问我该用何种方法模拟点击登陆按钮,如下图片是按钮的页面代码。

这个解答帮助过1111人

参考代码:

Dim doc As HTMLDocument

doc.getElementsByClassName("btn btn-primary btn-sm")(0).Click

编辑时间 2019-10-04 08:46:22
影响力:3694

document什么意思?

这个解答帮助过3866人

n.文件,公文;[计] 文章;证件vt.记录,记载网络 文章 ; 文件 ; 文献专业 文章[计] ; 单据[法] ; 文献[文]

编辑时间 2019-04-16
影响力:5356

EXCEL VBA获取某个需要登录的网站上的数据

描述: 这些数据我可以通过复制网页信息用VBA在本地归纳整理但是想更简单的方法,直接用VBA从网站获取(这些信息需要登录后才能看到)... 这些数据我可以通过复制网页信息用VBA在本地归纳整理
但是想更简单的方法,直接用VBA从网站获取(这些信息需要登录后才能看到)
这个解答帮助过6971人

可以通过WebBrowser控件的使用实现该功能
以下实例打开百度,在输入框输入“aaa”
Public Sub useie()
'引用Microsoft Internet Controls
Dim IE
On Error Resume Next
Set IE = CreateObject("InternetExplorer.application")
IE.Visible = True

IE.Navigate URL:=""
timeie = DateAdd("s", 20, Now()) '等待20s
Do While IE.Busy And Not IE.ReadyState = READYSTATE_COMPLETE
DoEvents
If timeie < Now() Then
MsgBox “无法连接重新执行”
IE.Quit
Exit Sub
End If
Loop

IE.Document.getElementById("kw").Value = "aaa"
Set IE = Nothing
Set ID = Nothing
End Sub

WebBrowser控件的使用
0、常用方法
Navigate(string urlString):浏览urlString表示的网址
Navigate(System.Uri url):浏览url表示的网址
Navigate(string urlString, string targetFrameName, byte[] postData, string additionalHeaders): 浏览urlString表示的网址,并发送postData中的消息
//(通常我们登录一个网站的时候就会把用户名和密码作为postData发送出去)
GoBack():后退
GoForward():前进
Refresh():刷新
Stop():停止
GoHome():浏览主页
WebBrowser控件的常用属性:
Document:获取当前正在浏览的文章
DocumentTitle:获取当前正在浏览的网页标题
StatusText:获取当前状态栏的文本
Url:获取当前正在浏览的网址的Uri
ReadyState:获取浏览的状态
WebBrowser控件的常用事件:
DocumentTitleChanged,
CanGoBackChanged,
CanGoForwardChanged,
DocumentTitleChanged,
ProgressChanged,
ProgressChanged

1、获取非input控件的值:
webBrowser1.Document.All["控件ID"].InnerText;
或webBrowser1.Document.GetElementById("控件ID").InnerText;
或webBrowser1.Document.GetElementById("控件ID").GetAttribute("value");

2、获取input控件的值:
webBrowser1.Document.All["控件ID"].GetAttribute("value");;
或webBrowser1.Document.GetElementById("控件ID").GetAttribute("value");

3、给输入框赋值:
//输入框
user.InnerText = "myname";
password.InnerText = "123456";
webBrowser1.Document.GetElementById("password").SetAttribute("value", "Welcome123");

4、下拉、复选、多选:

//下拉框:
secret.SetAttribute("value", "question1");
//复选框
rememberme.SetAttribute("Checked", "True");
//多选框
cookietime.SetAttribute("checked", "checked");

5、根据已知有ID的元素操作没有ID的元素:
HtmlElement btnDelete = webBrowser1.Document.GetElementById(passengerId).Parent.Parent.Parent.Parent.FirstChild.FirstChild.Children[1].FirstChild.FirstChild;

根据Parent,FirstChild,Children[1]数组,多少层级的元素都能找到。

6、获取Div或其他元素的样式:
webBrowser1.Document.GetElementById("addDiv").Style;

7、直接执行页面中的脚本函数,带动态参数或不带参数都行:
Object[] objArray = new Object[1];
objArray[0] = (Object)this.labFlightNumber.Text;
webBrowser1.Document.InvokeScript("ticketbook", objArray);
webBrowser1.Document.InvokeScript("return false");

8、自动点击、自动提交:
HtmlElement btnAdd = doc.GetElementById("addDiv").FirstChild;
btnAdd.InvokeMember("Click");

9、自动赋值,然后点击提交按钮的时候如果出现脚本错误或一直加载的问题,一般都是点击事件执行过快,这时需要借助Timer控件延迟执行提交按钮事件:

this.timer1.Enabled = true;
this.timer1.Interval = 1000 * 2;
private void timer1_Tick(object sender, EventArgs e)
{
this.timer1.Enabled = false;
ClickBtn.InvokeMember("Click");//执行按扭操作
}

10、屏蔽脚本错误:
将WebBrowser控件ScriptErrorsSuppressed设置为True即可

11、自动点击弹出提示框:

private void webBrowser1_Navigated(object sender, WebBrowserNavigatedEventArgs e)
{
//自动点击弹出确认或弹出提示
IHTMLDocument2 vDocument = (IHTMLDocument2)webBrowser1.Document.DomDocument;
vDocument.parentWindow.execScript("function confirm(str){return true;} ", "javascript"); //弹出确认
vDocument.parentWindow.execScript("function alert(str){return true;} ", "javaScript");//弹出提示
}

WebBrowser页面加载完毕之后,在页面中进行一些自动化操作的时候弹出框的自动点击(屏蔽)

private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
//自动点击弹出确认或弹出提示
IHTMLDocument2 vDocument = (IHTMLDocument2)webBrowser1.Document.DomDocument;
vDocument.parentWindow.execScript("function confirm(str){return true;} ", "javascript"); //弹出确认
vDocument.parentWindow.execScript("function alert(str){return true;} ", "javaScript");//弹出提示
//下面是你的执行操作代码
}

12、获取网页中的Iframe,并设置Iframe的src
HtmlDocument docFrame = webBrowser1.Document.Window.Frames["mainFrame"].Document;

HtmlDocument docFrame = webBrowser1.Document.All.Frames["mainFrame"].Document;
docFrame.All["mainFrame"].SetAttribute("src", "");

13、网页中存在Iframe的时候webBrowser1.Url和webBrowser1_DocumentCompleted中的e.Url不一样,前者是主框架的Url,后者是当前活动框口的Url。

14、让控件聚焦
this.webBrowser1.Select();
this.webBrowser1.Focus();
doc.All["TPL_password_1"].Focus();

15、打开本地网页文件
webBrowser1.Navigate(Application.StartupPath + @"\Test.html");

16、获取元素、表单

//根据Name获取元素
public HtmlElement GetElement_Name(WebBrowser wb,string Name)
{
HtmlElement e = wb.Document.All[Name];
return e;
}

//根据Id获取元素
public HtmlElement GetElement_Id(WebBrowser wb, string id)
{
HtmlElement e = wb.Document.GetElementById(id);
return e;
}

//根据Index获取元素
public HtmlElement GetElement_Index(WebBrowser wb,int index)
{
HtmlElement e = wb.Document.All[index];
return e;
}

//获取form表单名name,返回表单
public HtmlElement GetElement_Form(WebBrowser wb,string form_name)
{
HtmlElement e = wb.Document.Forms[form_name];
return e;
}

//设置元素value属性的值
public void Write_value(HtmlElement e,string value)
{
e.SetAttribute("value", value);
}

//执行元素的方法,如:click,submit(需Form表单名)等
public void Btn_click(HtmlElement e,string s)
{

e.InvokeMember(s);
}

编辑时间
影响力:8347

VBA获取不到信息

描述: 获取不到信息DimieAsObjectSetie=CreateObject("internetexplorer.application")ie.Visible=Trueie.navigate"这ww里w.szair是port.c0网m/frontapp/址HbxxServlet"Whileie.readyState<... 获取不到信息
Dim ie As Object
Set ie = CreateObject("internetexplorer.application")
ie.Visible = True
ie.navigate "这ww里w.szair是port.c0网m/frontapp/址HbxxServlet"
While ie.readyState <> 4 Or ie.Busy = True
DoEvents
Wend
'ie.document.all("hbxx_jcbz_ds").Click '选择离港"
Dim ubjs As Object, ubj As Object
Set ubjs = ie.document.getElementsByTagName("input")
For Each ubj In ubjs
If ubj.ID = "hbxx_jcbz_ds" Then '调试无ID 按键,选择离港"
ubj.Click
Exit For
End If
Next

ie.document.all("hbxx_hbh").Value = "CZ6357"
ie.document.all("hbhcx").Click
While ie.readyState <> 4
DoEvents
Wend

Cells(3, 3) = ie.document.body.innerText
能填表查询,能查到信息,就是获取不出来
展开
这个解答帮助过5169人

ie.document.body.innerText

不对,你用本地窗口看看你要的表格内容怎么调用出来。

ie.document.all("hbxx_hbh").Value = "CZ6357"
ie.document.all("hbhcx").Click
While ie.readyState <> 4
DoEvents
Wend
Application.Wait (Now() + TimeValue("00:00:05"))  '延时5秒(可以试试最短几秒合适,来达到既快又准),否则获取到的是“暂无信息”,数据库服务器响应没网页显示那么快
'Sheet1.Cells(3, 3) = ie.document.all("trs").innerText  '这句获取到的是航班查询到的信息内容
Sheet1.Cells(3, 3) = ie.document.body.innerText '这句获取到的是网页的body部分所有内容,后续用split + 数组整形处理一下即可得到满意的排版

上面代码我测试过是OK的,核心问题是延时几秒再取数据就对了,否则取到的数据不对。

追问

不明白你的意思。我要的是把网页上的文字都拷下来就行,应该怎么改?

追答

在 wend 之后加一句:
Application.Wait (Now() + TimeValue("00:00:05"))
就好了,你试试。

追问

难道我电脑跟你的不一样?我都延迟50秒了还是“没有您需要的航班记录“”

追答

私信,远程看看吧。

追问

公司内网,没办法远程,我回去用别的电脑试试吧,确定你真的可以获取得到信息就可以了。刚刚试了,360的浏览器可以,IE不可以获取到。

追答

我用的IE11测试的,没有问题。

更多追问

编辑时间 2018-11-10
影响力:4275

html DOM节点树中,谁是根节点,document还是html,html节点是不是指的是根元素节点

这个解答帮助过2844人
编辑时间 2019-05-28
影响力:526

event.srcElement在谷歌上怎么用,下面代码el.sourceIndex在谷歌里面不能实现怎么修改

描述: if(el.tagName=="INPUT"&&el.type.toLowerCase()=="text"){if(event.keyCode==39||event.keyCode==40){for(i=el.sourceIndex+1;i<document.all.length;i++){if(document.all[i].tagNa... if (el.tagName == "INPUT" && el.type.toLowerCase() == "text") {
if (event.keyCode == 39 || event.keyCode == 40) {
for (i = el.sourceIndex + 1; i < document.all.length; i++) {
if (document.all[i].tagName == "INPUT" && document.all[i].type.toLowerCase() == "text") {
document.all[i].focus();
break;
}
}
}
else if (event.keyCode == 38 || event.keyCode == 37) {
for (i = el.sourceIndex - 1; i >= 0; i--) {
if (document.all[i].tagName == "INPUT" && document.all[i].type.toLowerCase() == "text") {
document.all[i].focus();
break;
}
}
}

展开

这个解答帮助过1401人

因为ff下本身不支持srcElement而是支持target,你这里这么用也是为了兼容浏览器,但是
event.srcElement.id
这么写会从event.srcElement里找id属性,这样是默认event.srcElement存在的,而火狐是不存在,当然就报错了.
var obj=event.srcElement ? event.srcElement : event.target;
再调用obj.id就行了.

编辑时间 2018-12-25
影响力:7473

document.getElmentById为啥拿不到值?javascript

描述: document.getElementById("demo").style.height;请问为什么拿不到元素属性值呢?thankyou... document.getElementById("demo").style.height ;

请问 为什么 拿不到 元素 属性值呢 ?

thank you
这个解答帮助过2232人

排除能够正常获取到dom元素的情况下,HTMLElement.style只能拿到行内样式,即stylesheet中的样式属性是没办法通过element.style拿到的。

编辑时间 2019-05-29
影响力:204

win10 19h1和win10rs5有什么区别

这个解答帮助过9477人

如果你找的javascript的东西的话,建议你 ctrl+F 直接在这个页上找,因为这里80%有你要找的,但是要让你挨着看的话,你就准备看完就去配眼镜!!

事件源对象
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.activeElement
绑定事件
document.captureEvents(Event.KEYDOWN);
访问窗体元素
document.all("txt").focus();
document.all("txt").select();
窗体命令
document.execCommand
窗体COOKIE
document.cookie
菜单事件
document.oncontextmenu
创建元素
document.createElement("SPAN");
根据鼠标获得元素:
document.elementFromPoint(event.x,event.y).tagName=="TD
document.elementFromPoint(event.x,event.y).appendChild(ms)

编辑时间 2019-07-28
影响力:212

wpf窗口初始化时如何让复选框根据文件里的bool值打勾打勾

这个解答帮助过539人

简单的例子,试一下:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>测试Display</title>
<script Language="JavaScript">
function changedisplay()
{
//alert(document.all.testchb.display);
if (document.all.testchb.style.display=='block')
{
document.all.testchb.style.display="none";
document.all.btnchange.innerText=' 显 示 ';
}
else
{
document.all.testchb.style.display="block";
document.all.btnchange.innerText=' 隐 藏 ';
}
}
</script>
</head>
<body>
<p align="center">
<input type="checkbox" name="testchb" style="display:block">
测试框<br>
<input type="button" value=" 隐 藏 " name="btnchange" onclick="changedisplay();"><br>
其中:display: none 使其隐藏;display: block 显示</p>
</form>
</body>
</html>

编辑时间 2019-02-18
影响力:8637

关于用dom连续读和写xml 重复换行的问题

描述: <?xmlversion="1.0"encoding="UTF-8"standalone="no"?><Flights><Flightid="1"><flightNumber>ABC1</flightNumber><airline>Lufthansa</airline><airplaneType>A380</airplaneType><t... <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<Flights>

<Flight id="1">

<flightNumber>ABC1</flightNumber>

<airline>Lufthansa</airline>

<airplaneType>A380</airplaneType>

<terminal>1</terminal>

<gate>G</gate>

<departureAirport>MUC</departureAirport>

<arrivalAirport>FAO</arrivalAirport>

<departureDateTime>2019-05-10 18:00</departureDateTime>

<arrivalDateTime>2019-05-10 19:00</arrivalDateTime>

<seat>13A</seat>

</Flight>

<Flight id="2">

<flightNumber>ABC2</flightNumber>

<airline>Lufthansa</airline>

<airplaneType>A320</airplaneType>

<terminal>2</terminal>

<gate>C</gate>

<departureAirport>FAO</departureAirport>

<arrivalAirport>MUC</arrivalAirport>

<departureDateTime>2019-05-11 18:00</departureDateTime>

<arrivalDateTime>2019-05-11 19:00</arrivalDateTime>

<seat>13A</seat>

</Flight>
</Flights>
===================================================
以上是我的xml 最下面是刚刚写入的 (也是正常的换行) 但是之前的是多次读写后 每一次读写都换一次行(所以第一个换行最多 然后依次递减)
虽然有很多空格 但是对于我的parse没有问题
我的问题是如何避免这样情况 然后读写以后也是一个看起来很正常的树形结构 就是想看起来正常一些
谢谢大家
=====================================================


展开

这个解答帮助过1079人

public class FlightData { protected Document documentAll = null; protected Document documentUser = null; protected NodeList flightListAll; protected NodeList flightListUser; private int counter; DateTimeFormatter date = DateTimeFormatter.ofPattern("yyyy-MM-dd"); DateTimeFormatter time = DateTimeFormatter.ofPattern("HH:mm"); public FlightData () { counter = 0; DocumentBuilderFactory dbf; DocumentBuilder db; dbf = DocumentBuilderFactory.newInstance(); try { db = dbf.newDocumentBuilder(); documentAll = db.parse("./app/FlightApp/TestData.xml"); flightListAll = documentAll.getElementsByTagName("Flight"); documentUser = db.parse("./app/FlightApp/DataUser.xml"); flightListUser = documentUser.getElementsByTagName("Flight"); } catch (ParserConfigurationException e) { e.printStackTrace(); } catch (SAXException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } /** * get the flight object with the index in the xml database * @param the index of the flight that you want to get * @return the flight that matches the index */ private Flight getFlight(NodeList nodelist, int index) { Node flight = nodelist.item(index); NodeList childNodes = flight.getChildNodes(); String flightNumber = childNodes.item(1).getFirstChild().getNodeValue(); String airline = childNodes.item(3).getFirstChild().getNodeValue(); String airplaneType = childNodes.item(5).getFirstChild().getNodeValue(); String terminal = childNodes.item(7).getFirstChild().getNodeValue(); String gate = childNodes.item(9).getFirstChild().getNodeValue(); String departureAirport = childNodes.item(11).getFirstChild().getNodeValue(); String arrivalAirport = childNodes.item(13).getFirstChild().getNodeValue(); String departureDateTime = childNodes.item(15).getFirstChild().getNodeValue(); String arrivalDateTime = childNodes.item(17).getFirstChild().getNodeValue(); String seat = childNodes.item(19).getFirstChild().getNodeValue(); Flight f = new Flight(flightNumber, airline, airplaneType, terminal, gate, departureAirport, arrivalAirport, seat, departureDateTime, arrivalDateTime);// System.out.println(flightNumber);// System.out.println(airline);// System.out.println(airplaneType);// System.out.println(terminal);// System.out.println(gate);// System.out.println(departureAirport);// System.out.println(arrivalAirport);// System.out.println(departureDateTime);// System.out.println(arrivalDateTime);// System.out.println(seat); return f; } /** * get the all the flight * @return all the flights in a List */ public List<Flight> getFlightsAll() { return getFlights(flightListAll); } /** * get the user's flight * @return the user' flights in a List */ public List<Flight> getFlightsUser() { return getFlights(flightListUser); } private List<Flight> getFlights(NodeList nodelist) { List<Flight> flights = new ArrayList<Flight>(); for (int i = 0; i < nodelist.getLength(); i++) { flights.add(getFlight(nodelist, i)); } return flights; } /** * @return the length of the list of all flights */ public int getSizeAllFlights () { return flightListAll.getLength(); } /** * @return the length of the list of user's flights */ public int getSizeUserFlights () { return flightListUser.getLength(); } public void addNodeToUserFlights() { //TODO delete Flight a = new Flight("ABC2", "Lufthansa", "A320", "2", "C", "FAO", "MUC", "13A", "2019-05-11 18:00", "2019-05-11 19:00"); addNode("./app/FlightApp/DataUser.xml", a, "Flights", documentUser); } private void addNode(String fileName, Flight flight, String fatherNodeName, Document document) { assert(document.equals(flightListUser)); try { Element newflight = document.createElement("Flight"); counter++; newflight.setAttribute("id", getSizeUserFlights() + counter + ""); Element flightNumber = document.createElement("flightNumber"); Element airline = document.createElement("airline"); Element airplaneType = document.createElement("airplaneType"); Element terminal = document.createElement("terminal"); Element gate = document.createElement("gate"); Element departureAirport = document.createElement("departureAirport"); Element arrivalAirport = document.createElement("arrivalAirport"); Element departureDateTime = document.createElement("departureDateTime"); Element arrivalDateTime = document.createElement("arrivalDateTime"); Element seat = document.createElement("seat"); flightNumber.setTextContent(flight.getFlightNumber()); airline.setTextContent(flight.getAirline()); airplaneType.setTextContent(flight.getAirplaneType()); terminal.setTextContent(flight.getTerminal()); gate.setTextContent(flight.getGate()); departureAirport.setTextContent(flight.getDepartureAirport()); arrivalAirport.setTextContent(flight.getArrivalAirport()); departureDateTime.setTextContent(flight.getDepartureDateTime().format(date) + " " + flight.getDepartureDateTime().format(time)); arrivalDateTime.setTextContent(flight.getArrivalDateTime().format(date) + " " + flight.getArrivalDateTime().format(time)); seat.setTextContent(flight.getSeat()); newflight.appendChild(flightNumber); newflight.appendChild(airline); newflight.appendChild(airplaneType); newflight.appendChild(terminal); newflight.appendChild(gate); newflight.appendChild(departureAirport); newflight.appendChild(arrivalAirport); newflight.appendChild(departureDateTime); newflight.appendChild(arrivalDateTime); newflight.appendChild(seat); Element fatherElement = (Element)document.getElementsByTagName(fatherNodeName).item(0); fatherElement.appendChild(newflight); TransformerFactory transformerFactory = TransformerFactory.newInstance(); Transformer transformer = transformerFactory.newTransformer(); DOMSource source = new DOMSource(document); transformer.setOutputProperty(OutputKeys.ENCODING, "UTF-8"); transformer.setOutputProperty(OutputKeys.INDENT, "yes"); transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "2"); StreamResult result = new StreamResult(new FileOutputStream(fileName)); transformer.transform(source, result); } catch(Exception e) { System.out.println(e.getMessage()); } }

编辑时间 2019-05-31