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的内容)