gpt4 book ai didi

c# - 从

转载 作者:可可西里 更新时间:2023-11-01 13:23:03 25 4
gpt4 key购买 nike

我正在使用 C# 中的 webBrowser,我需要从链接中获取文本。该链接只是一个没有类的 href。

是这样的

<div class="class1" title="myfirstClass">
<a href="link.php">text I want read in C#
<span class="order-level"></span>

不应该是这样的吗?

        HtmlElementCollection theElementCollection = default(HtmlElementCollection);
theElementCollection = webBrowser1.Document.GetElementsByTagName("div");
foreach (HtmlElement curElement in theElementCollection)
{
if (curElement.GetAttribute("className").ToString() == "class1")
{
HtmlElementCollection childDivs = curElement.Children.GetElementsByName("a");
foreach (HtmlElement childElement in childDivs)
{
MessageBox.Show(childElement.InnerText);
}

}
}

最佳答案

关于c# - 从 <div class> 获取带有 <a href> child 的 innerText,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43702211/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com