gpt4 book ai didi

c# 如何从 div 类中的 中获取字符串

转载 作者:行者123 更新时间:2023-11-30 21:49:20 24 4
gpt4 key购买 nike

所以我一直在使用这样的东西:

webBrowser1.Document.GetElementById("month").SetAttribute("value", exp1);

这允许我设置值,但现在我想获取一个值而不是替换它。

<div class="contents">
<div class="background">stuff</div>
<div class="content">
<h2>title</h2>
<p>
Blah blah number is <b>0100000</b>
<p>
</div>
</div>

如何获取内容类内标签内的数字?有点卡住了!

谢谢!

最佳答案

这是您需要的代码:

string theText;
foreach (HtmlElement item in webBrowser1.Document.GetElementsByTagName("div"))
{
if (item.GetAttribute("className") == "content")
theText = item.GetElementsByTagName("b")[0].InnerText;
}

关于c# 如何从 div 类中的 <b> 中获取字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37024280/

24 4 0