IHTMLDocument2中的链接

时间:2018-02-09 11:02:43

标签: delphi ihtmldocument2

我使用IHTMLDocument2检索innertext标记中TD的字符串,我有恢复链接,但我找不到如何使用innerhtml我看到我的链接但是我不知道如何检索它。

我的HTML

<td class="hidden-sm hidden-xs">
    <a href="** My URL **">
        <i class="fa fa-cube" aria-hidden="true"></i>**My Title**
    </a>
</td>

在innerhtml中我得到<a href="** My URL **"> <i class = "fa fa-cube" aria-hidden = "true"> </ i> ** My Title ** </a> 我想要恢复&#39; href&#39;

的内容

我的代码

for i := 0 to doc.body.all.length  do
  begin
       el := doc.body.all.item(i);
       if (el.tagName = 'TD') then
       Begin
            Title := el.innerText;
            URL := el.??;

0 个答案:

没有答案