1

ID があり、テキストを取得する場合は、これを使用します

var text = webBrowser1.Document.GetElementById("id").InnerText;

IDを知っているリンクhrefを取得するにはどうすればよいですか

HTML

<a id="link11" href="/torrent_details/386387353/ubuntu?tab=summary" data-dynamite-selected="true"><b>ubuntu</b>-12.04-desktop-i386.iso</a>
4

2 に答える 2

2
string href = webBrowser1.Document.GetElementById("id").GetAttribute("href");
于 2012-07-25T20:45:31.893 に答える
1

これを試して

    webBrowser1.Document.GetElementById("link11").GetAttribute("href")
于 2012-07-25T20:48:18.100 に答える