如何在 Web 浏览器中禁用 html 控件
本文关键字:html 控件 浏览器 Web | 更新日期: 2023-09-27 18:33:59
为什么我无法更改浏览器控件中HTML
元素的可见性/启用属性。 我正在使用如下代码:
webBrowser.Document.GetElementById("myCombo").SetAttribute("Visible", "False")
webBrowser.Document.GetElementById("myCombo").SetAttribute("Enabled", "False")
在这种情况下,我做错了什么?
这样做:
webBrowser.Document.GetElementById("myCombo").Enabled = False '<--- for disable the control
webBrowser.Document.GetElementById("myCombo").Enabled = True'<--- for enable the control
要隐藏元素,请使用以下命令:
webBrowser.Document.GetElementById("myCombo").Enabled = False
要显示元素,请使用以下命令:
webBrowser.Document.GetElementById("myCombo").Enabled = True