【已解决】这个page为何用_IELinkGetCollection得不到任何link呢
本帖最后由 lleheaven 于 2012-11-15 16:29 编辑Opt("WinTitleMatchMode", 2) ;1=开头, 2=子串, 3=完全, 4=高级 , -1 to -4=Nocase
$oNewIE = _IECreate("http://go.webex.com",0,1,1,1)
_IELoadWait ( $oNewIE )
$oIE =_IEAttach("WebEx Meeting Center")
ConsoleWrite(IsObj($oIE) & @CRLF )
$oLinks = _IELinkGetCollection ($oIE)
$iNumLinks = @extended
MsgBox(0, "Link Info", $iNumLinks & " links found")
For $oLink In $oLinks
MsgBox(0, "Link Info", $oLink.href)
Next自己研究了下,找到了, 要先_IEFrameGetCollection拿到Frame 里面才有link~~~
页:
[1]