检索HtmlElement

时间:2016-01-22 16:58:00

标签: c# html

<div class="container">
  <h1>Maintain Aspect Ratio Mixin</h1>
  <div class="box sixteen-nine">
    <div class="content">
      <span>16:9</span>
    </div>
  </div>
</div>

我使用带有集成webbrowser的Windows-Forms-Application。有没有办法检索这个特定的HtmlElement?

对不起,我对此非常陌生,如果缺少某些信息,请告诉我。

1 个答案:

答案 0 :(得分:0)

using System.Linq;
...

var element1 = browser.Document.GetElementsByTagName("span")
      .Where(e => e.GetAttribute("class") == "element1")
      .FirstOrDefault();

element1如果找不到则会null