0

从下面的源代码中,我想提取 InnerText“我的名字”,但我可以挑出 1 个 href 节点,而是获取整个 href 列表:

<tr class="index">
  <td class="number">1.</td>
  <td class="image">
    <a href="/image/520211/" title="My index">
    <img src=" /images/M/MV5MDE.jpg" height="74" width="54" alt="My Alt" title="My Title">
    </a>
  </td>
  <td class="name">
    <span class="name_wrapper" data-size="small" data-caller-name="search">
    </span>
    <a href="/data/520211/">My Name</a>
    <span class="year">1974</span>
  </td>
</tr>

到目前为止我的代码:

for (var index = 0; index < htmlDocument.DocumentNode.SelectNodes("//tr[@class=index']//a[@href]").Count; index++)
{
    var item = htmlDocument.DocumentNode.SelectNodes("//tr[@class=index']//a[@href]")[index];
    MessageBox.Show(item.InnerText);
}
4

1 回答 1

0

尝试这个:

string name = "";
var node = htmlDocument.DocumentNode
    .SelectSingleNode("//tr[@class='index']//td[@class='name']//a[@href]");
if (node != null)
    name = node.InnerText;
于 2013-10-31T08:30:11.347 回答