我需要innerText
从 webBrowser 控件中当前选择的选项中选择。
这是html的表示:
<SELECT ID="F8">
<OPTION VALUE="option1">option1</OPTION>
<OPTION VALUE="option2" selected>option2</OPTION>
<OPTION VALUE="option3">option3</OPTION>
</SELECT>
这是我正在尝试的:
if (webBrowser1.Document.GetElementById("F8") != null)
{
HtmlElement selectF8 = webBrowser1.Document.GetElementById("F8");
foreach (HtmlElement item in selectF8.Children )
{
if (item.GetAttribute("selected") != null)
{
assigneeText.Text = item.InnerText;
}
}
}
...但它完全忽略了 if 语句并始终分配assigneeText.Text
值 ofoption3
而不是 selected 的值option2
。
有人可以告诉我我做错了什么吗?