webBrowser setAttribute

时间:2012-02-03 11:20:07

标签: c# browser web

这是问题

<input type='text'name='TextBox0001'/>

例如,只需使用以下代码为上面的输入插入一个值:

foreach (HtmlElement he in webBrowser1.Document.All.GetElementsByName("TextBox0001"))
{
he.SetAttribute("value", "HI");
}

没关系,但如果html代码写得如下,如何为计数器插入一个值?

<table>
<tr id='set1_row1'>
<td> <input type='text'name='counter'></td>
</tr>

<tr id='set1_row2'>
<td> <input type='text'name='counter'></td>
</tr>
</table>
</table>

我正在使用c#webBrowser。

1 个答案:

答案 0 :(得分:3)

对于“set1_row1”将是:

foreach (HtmlElement he in webBrowser1.Document.All.GetElementsByName("counter"))
{
    if(he.Parent.Parent.getAttribute("id") == "set1_row1")
    {
        he.SetAttribute("value", "HI");
    }
}

你明白了,所以你可以根据这个例子找出你的确切逻辑。