CWebBrowser2获取html的内容
Posted 菜鸟程序员
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CWebBrowser2获取html的内容相关的知识,希望对你有一定的参考价值。
m_web为浏览器控件的变量名
LPDISPATCH p=m_web.GetDocument(); CComQIPtr<IhtmlDocument2,&IID_IHTMLDocument2> d=m_web.GetDocument(); IHTMLElement* body; d->get_body(&body); CComBSTR context; body->get_outerText(&context); CString pcstr= context.m_str; MessageBox(pcstr);
以上是关于CWebBrowser2获取html的内容的主要内容,如果未能解决你的问题,请参考以下文章
从 XML 声明片段获取 XML 编码:部分内容解析不支持 XmlDeclaration