修改Body标记内InnerHTML属性。 实例代码 BOOL CMoreHtmlView::PutBodyContent(LPSTR lpstrContent) { //store body content if( lpstrContent) m_lpstrBodyContent=lpstrContent; //check if HtmlDocument initialized if( m_pHtmlDoc2) //m_pHtmlDoc2 指向接口 IID_IHTMLDocument2 { HRESULT hr = S_OK; IHTMLElement *pBodyElement; //get body element hr=m_pHtmlDoc2->get_body( &pBodyElement); //得到Body标记 //put content to body element _bstr_t pbBody( m_lpstrBodyContent); hr=pBodyElement->put_innerHTML( pbBody); //设置HTML标记内内容 if( hr==S_FALSE) return FALSE; else return TRUE; } else return FALSE; } |
正在阅读:显示内存中的HTML内容显示内存中的HTML内容
2004-04-05 14:41
出处:VChelp
责任编辑:sdq
键盘也能翻页,试试“← →”键