博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
autoit3 ie.au3 函数之——_IEDocGetObj
阅读量:4053 次
发布时间:2019-05-25

本文共 709 字,大约阅读时间需要 2 分钟。

_IEDocGetObj:
Given any DOM object, returns a reference to the associated document object.

即: 给定任意的DOM对象,返回相关文档对象的参考.

#include <IE.au3>

_IEDocGetObj ( ByRef $o_object )

例子:

; *******************************************************

; Example 1 - Open a browser to the AutoIt Homepage, get a reference
;               to the document object and display a document attribute
; *******************************************************
;

#include <IE.au3>

$oIE = _IECreate ("http://www.baidu.com")
$oDoc = _IEDocGetObj ($oIE)
;MsgBox(0, "Document Created Date", $oDoc.fileCreatedDate)
;MsgBox(0, "Document Created Date", $oDoc.url)
;MsgBox(0, "Document Created Date", $oDoc.title)
MsgBox(0, "Document Created Date", $oDoc.domain)

转载地址:http://wwjci.baihongyu.com/

你可能感兴趣的文章
mysql:sql alter database修改数据库字符集
查看>>
mysql:sql truncate (清除表数据)
查看>>
yuv to rgb 转换失败呀。天呀。谁来帮帮我呀。
查看>>
yuv420 format
查看>>
yuv420 还原为RGB图像
查看>>
LED恒流驱动芯片
查看>>
驱动TFT要SDRAM做为显示缓存
查看>>
使用file查看可执行文件的平台性,x86 or arm ?
查看>>
qt5 everywhere 编译summary
查看>>
qt 创建异形窗体
查看>>
简单Linux C线程池
查看>>
内存池
查看>>
输入设备节点自动生成
查看>>
GNU hello代码分析
查看>>
Qt继电器控制板代码
查看>>
wpa_supplicant控制脚本
查看>>
gstreamer相关工具集合
查看>>
RS232 四入四出模块控制代码
查看>>
linux 驱动开发 头文件
查看>>
container_of()传入结构体中的成员,返回该结构体的首地址
查看>>