正在阅读:显示内存中的HTML内容显示内存中的HTML内容

2004-04-05 14:41 出处:VChelp 作者:闻怡洋 责任编辑:sdq

  修改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;
  }

察看评论详细内容 我要发表评论
作者笔名简短内容 发表时间
:

键盘也能翻页,试试“← →”键

相关文章

关注我们

最新资讯离线随时看 聊天吐槽赢奖品