如何查找此HTML源的ID

时间:2013-01-10 19:13:10

标签: html vb.net

我想找出ID of an element。我想找出文本框的ID,因为我需要在我的VB应用程序中键入ID(从那里我将使用GetElementbyID来查找元素)。我为ID尝试了“futPhishingTextBoxTyped”但它不起作用..

2 个答案:

答案 0 :(得分:1)

类别为“futPhishingTextboxTyped”的文本框没有指定的ID。您需要从FORM父级中引用它:

document.*formname*.futPhishingTextboxTyped (whatever your form name is)

INPUTS也应该是自我关闭的:

<input class="futPhishingTextboxTyped" type="text" maxlength="15" />

答案 1 :(得分:0)

它没有id。您可以尝试获取div,然后使用

查找输入的子项
GetElementById("futPhishingAdditional").GetElementsByTagName("input")

根据您的评论,整行可能如下所示:

WebBrowser1.Document.GetElementById("futPhishingAdditional").GetElementsByTagName("input").Item(0).SetAttribute("va‌​lue", TextBox1.Text)