TList<IHTMLElement>
またはarray of IHTMLElements
:などの独自のコンテナクラスを作成するだけです。
type
THTMLElements = array of IHTMLElement;
function GetElementsByClassName(ADoc: IDispatch; const strClassName: string): THTMLElements;
var
vDocument: IHTMLDocument2;
vElementsAll: IHTMLElementCollection;
vElement: IHTMLElement;
I, ElementCount: Integer;
begin
Result := nil;
ElementCount := 0;
if not Supports(ADoc, IHTMLDocument2, vDocument) then
raise Exception.Create('Invalid HTML document');
vElementsAll := vDocument.all;
SetLength(Result, vElementsAll.length); // set length to max elements
for I := 0 to vElementsAll.length - 1 do
if Supports(vElementsAll.item(I, EmptyParam), IHTMLElement, vElement) then
if SameText(vElement.className, strClassName) then
begin
Result[ElementCount] := vElement;
Inc(ElementCount);
end;
SetLength(Result, ElementCount); // adjust Result length
end;
使用法:
procedure TForm1.FormCreate(Sender: TObject);
begin
WebBrowser1.Navigate('http://stackoverflow.com/questions/14535755/how-to-get-an-ihtmlelementcollection-obj-which-composed-of-several-ihtmlelements');
end;
procedure TForm1.Button1Click(Sender: TObject);
var
Elements: THTMLElements;
I: Integer;
begin
// show Tags information for SO page:
Elements := GetElementsByClassName(WebBrowser1.Document, 'post-tag');
ShowMessage(IntToStr(Length(Elements)));
for I := 0 to Length(Elements) - 1 do
Memo1.Lines.Add(Elements[I].innerHTML + ':' + Elements[I].getAttribute('href', 0));
end;
結果をとして返す際の主な問題は、IHTMLElementCollection
によって内部的IHTMLElementCollection
に作成されることであり、要素の新しいインスタンスを作成してそれに要素の参照を追加する方法を見つけることができませんでした。例:IHTMLDocument
IHTMLElementCollection
vElementsRet := CoHTMLElementCollection.Create as IHTMLElementCollection
Class not registered
例外が発生します。