Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<a href="#" onclick="show('11635356');">11635356</a>
上記の HTML コードは、番号 11635356 を Web ページ上のリンクとして示しています。このリンクをクリックしたいです。Visual Basic for Excel を使用してこのページにリンクするには?
以下のコードを試してください。
Set ancElem = IE.document.getelementsbytagname("a") ancElem.Click
また
Document.GetElementsByTagName("a").Item(0).FireEvent("click()")