_IEGetObjById
Returns an object variable by id or name.
#include <IE.au3>
_IEGetObjById(ByRef $o_object, $s_Id)
Параметры
$o_object | Переменная объекта InternetExplorer.Application, объекта Окна или Фрейма (области) |
$s_Id |
Specifies id or name of the object you wish to match |
Возвращаемое значение
Успех: | Возвращает an object variable pointing to the specified Object |
Ошибка: | Возвращает 0 и устанавливает @error |
@error: | 0 ($_IEStatus_Success) = Нет ошибок |
3 ($_IEStatus_InvalidDataType) = Неверный тип данных | |
7 ($_IEStatus_NoMatch) = Нет совпадений |
Примечания
This function will return an object reference to any object in the document with a specified id or name. DOM elements can have Name or ID attributes or both. A specific ID can be assigned to only a single element while a specific Name can be assigned to multiple elements. In Internet Explorer, the Name and ID namespaces are shared.См. также
_IEGetObjByNameПример
; *******************************************************
; Пример 1 - Open a browser to the basic example, get an object reference
; to the DIV element with the ID "line1". Display the innerText
; of this element to the console.
; *******************************************************
#include <IE.au3>
$oIE = _IE_Example ("basic")
$oDiv = _IEGetObjById ($oIE, "line1")
ConsoleWrite(_IEPropertyGet($oDiv, "innertext") & @CRLF)