0

我有这个代码...

<td class="alt1" id="td_threadtitle_335784">
<td class="alt1" id="td_threadtitle_342222">
<td class="alt1" id="td_threadtitle_554213">
<td class="alt1" id="td_threadtitle_31226">
<td class="alt1" id="td_threadtitle_9442">

问题是...

如何使用 selectnodes 或其他功能来选择 ID...

我试试——

foreach (HtmlNode n in doc.DocumentNode.SelectNodes("//a[@id='td_threadtitle_']"))

但最后的数字是 $%@# Everthing...

[]的

4

1 回答 1

1

[已解决] 我只想选择 td_threadtitle_

然后我用这个...

  `("//a[starts-with(@id,'thread_title_')]")`

效果很好!

这段代码我也在这里看到..

谢谢你

于 2011-02-17T15:27:22.370 回答