试图获取元素GetElementById(“Name”)不起作用 - VB.NET

时间:2013-11-28 04:32:40

标签: html vb.net html5 dom

我正在尝试使用下面的代码设置输入框。但它不起作用。没有错误不起作用。

Browser2.Document.GetElementById("Name").SetAttribute("value", "myname")

然后我循环浏览所有输入框(参见下面的代码)(我只能“看到”其中的2个)并且没有一个返回显示我正在寻找的输入框。它是隐藏的还是我怎么做到的?

   For Each element As HtmlElement In Browser2.Document.GetElementsByTagName("input")
       System.Diagnostics.Debug.Print("input = " & element.GetAttribute("name") & " xx " & element.GetAttribute("id"))

   Next

0 个答案:

没有答案