举个例子:
         CComBSTR title;
spHTML->get_title(&title);
if(m_pBody!=NULL)
{
CComBSTR bstrHTMLText_in=bstrHTMLText_out; 
CComBSTR other="您现在浏览的是:";
other.Append(title);
bstrHTMLText_in.Append(other);
hr = m_pBody->put_innerHTML(bstrHTMLText_in);
m_pBody->Release();
当访问baidu.google时,可以正常追加一行:"您现在浏览的是:……",但其他网页,会不停的刷屏。请教一下,是不是BHO对某些结构的网页,比如多个frame,会不正常。
不大懂~~请教希望大家一下
谢谢