C#中的webBrowser单选框填表被选择如何写?

2024-12-17 04:23:53
推荐回答(2个)
回答1:

你的这两行代码是具体要做什么?是你想做的什么事情没有用?
若要用C#设置webBrowser中单选按钮的选择
可用如下代码:
HtmlElement authortb = webBrowser1.Document.All["Radio1"];
authortb.SetAttribute("checked", "checked");
其中html页面代码为:








回答2:

radioButton.checked=true