autoit3 ie.au3 函数之——_IEBodyReadText

_IEBodyReadText : Returns the Text inside the <body> tag of the document.

读取文档内 <body> 标签内的文字.

#include <IE.au3>
_IEBodyReadText ( ByRef $o_object )


例子:

#include <IE.au3>
$oIE = _IECreate ("www.baidu.com")
$sText = _IEBodyReadText ($oIE)


MsgBox(0, "Body Text", $sText)


PS: 这个方法可以读取源代码中body中的文本。


你可能感兴趣的:(autoit3 ie.au3 函数之——_IEBodyReadText)