Get a value of an attribute by XPath and HtmlAgilityPack
问题 I have a HTML document and I parse it with XPath. I want to get a value of the element input, but it didn't work. My Html: <tbody> <tr> <td> <input type="text" name="item" value="10743" readonly="readonly" size="10"/> </td> </tr> </tbody> My code: using HtmlAgilityPack; HtmlAgilityPack.HtmlDocument doc; HtmlWeb hw = new HtmlWeb(); HtmlNodeCollection node = doc.DocumentNode.SelectNodes("//input/@value"); string s=node[0].InnerText; So I want to get the value: "10743" (and I don't mind to get