1、在程序运行时,加入一个checkBox。
<input type=" & """" & "checkBox" & """" & " id=" & """" & "CheckA" & """" & " checked=" & """" & "false" & """" & " value='1' />
2、在程序运行之后,修改checkBox的状态(checked=true/false)
Dim htmlDoc As HtmlDocument = WebBrowser1.Document
A:htmlDoc.GetElementById("CheckA").SetAttribute("Checked","false") 功能:设置checkBox未选中
B:htmlDoc.GetElementById("CheckA").SetAttribute("Checked","true") 功能:设置checkBox选中
问题来了:
原文链接:https://www.f2er.com/vb/261639.html