CHtmlView 获取html页面 combox
时间: 2023-08-05 15:06:54 浏览: 99
用html实现的combox控件
4星 · 用户满意度95%
如果您想在 CHtmlView 中获取下拉框的内容,可以使用以下代码:
```cpp
// 获取 HTML 页面中名为 combo_box_name 的下拉框
CComboBox* pComboBox = (CComboBox*)GetHtmlElement("combo_box_name");
// 获取下拉框的选中项文本
CString strText;
int nSel = pComboBox->GetCurSel();
if (nSel != CB_ERR)
{
pComboBox->GetLBText(nSel, strText);
}
```
其中,`GetHtmlElement` 函数用于获取 HTML 页面中指定名称的元素。如果您想获取其他类型的元素,可以将 `CComboBox` 替换为相应的类名,如 `CEdit`、`CButton` 等。
阅读全文