HTML代码在网页上如下。它是我希望能够从VBA点击的链接。
<a title="View Account Summary" class="unregLink" href="/Standard/AccountSummary/Pages/default.aspx">View Account Summary</a>
&#13;
它没有ID,名称等。如何让VBA(IE.document)点击链接?
谢谢!
答案 0 :(得分:0)
尝试以下querySelector
。另外,你需要一些父母作为评论中提出的@TheSilkCode。 HTH
' Add reference to Microsoft Internet Controls (SHDocVw)
' Add reference to Microsoft HTML Object Library
Set doc = ie.document
Dim htmlAnchor As MSHTML.HTMLAnchorElement
Set htmlAnchor = doc.querySelector("a[class='unregLink'][href='/Standard/AccountSummary/Pages/default.aspx']")
htmlAnchor.click