HtmlDocument.GetElementById(String) Метод

Определение

Извлекает один объект HtmlElement , используя атрибут элемента ID в качестве ключа поиска.

public:
 System::Windows::Forms::HtmlElement ^ GetElementById(System::String ^ id);
public System.Windows.Forms.HtmlElement GetElementById (string id);
public System.Windows.Forms.HtmlElement? GetElementById (string id);
member this.GetElementById : string -> System.Windows.Forms.HtmlElement
Public Function GetElementById (id As String) As HtmlElement

Параметры

id
String

Атрибут идентификации извлекаемого элемента.

Возвращаемое значение

Возвращает первый объект с тем же ID атрибутом, что и указанное id значение, или null значение , если не удается найти.

Примеры

В следующем примере кода извлекается имя TABLE из документа, подсчитывается количество строк и отображается результат на веб-странице. В примере кода требуется, чтобы в проекте был WebBrowser элемент управления с именем WebBrowser1и была загружена веб-страница с атрибутом IDTABLETable1.

private Int32 GetTableRowCount(string tableID)
{
    Int32 count = 0;

    if (webBrowser1.Document != null)
    {
        HtmlElement tableElem = webBrowser1.Document.GetElementById(tableID);
        if (tableElem != null)
        {
            foreach (HtmlElement rowElem in tableElem.GetElementsByTagName("TR"))
            {
                count++;
            }
        }
        else
        {
            throw(new ArgumentException("No TABLE with an ID of " + tableID + " exists."));
        }
    }

    return(count);
}
Private Function GetTableRowCount(ByVal TableID As String) As Integer
    Dim Count As Integer = 0

    If (WebBrowser1.Document IsNot Nothing) Then

        Dim TableElem As HtmlElement = WebBrowser1.Document.GetElementById(TableID)
        If (TableElem IsNot Nothing) Then
            For Each RowElem As HtmlElement In TableElem.GetElementsByTagName("TR")
                Count = Count + 1
            Next
        Else
            Throw (New ArgumentException("No TABLE with an ID of " & TableID & " exists."))
        End If
    End If
    GetTableRowCount = Count
End Function

Комментарии

Если в документе есть несколько элементов с одинаковым значением идентификатора, GetElementById возвращается первый из них.

Применяется к

См. также раздел