1

我知道如何使用 IHTMLDocument2 接口(通过调用 get_body 成员函数。

但是我怎样才能得到头呢?IHTMLDocument2 界面中没有这个功能吗?

4

1 回答 1

4
    CComPtr<IHTMLDocument2> htmlDocument;
    CComPtr<IHTMLElementCollection> elementCollection;

    htmlDocument->get_all(&elementCollection);
    for (long i=0;i<numberOfElements;i++)
    {
        _variant_t index = i;
        CComPtr<IHTMLElement> htmlElem;
        CComPtr<IDispatch> htmlElemDisp;
        hResult = elementCollection->item( index,index ,(IDispatch **) &htmlElemDisp );
        if (FAILED(hResult) || (!(htmlElemDisp)))
        {
            continue;
        }
        hResult = htmlElemDisp->QueryInterface( IID_IHTMLElement ,(void **) &htmlElem);
        if (FAILED(hResult) || (!(htmlElem)))
        {
            continue;
        }
        hResult = htmlElem->get_tagName(&buffer);

        if (FAILED(hResult) || (!(buffer)))
        {
            continue;
        }
        if (_wcsicmp(buffer,L"HEAD")==0) 
        { 
         // your code here
        }
}

此外,您可以使用IHTMLDocument2* htmlDocument而不是CComPtr<IHTMLDocument2> htmlDocument. 主要思想是获取文档中的所有元素,对其进行迭代并找到具有标签名 HEAD 的元素。希望这可以帮助。

于 2011-12-09T11:51:08.073 回答