2

我创建了我的第一个 BHO,一个 IE 插件。我想向头部注入一个javascript文件。

IHTMLElement head = (IHTMLElement)((IHTMLElementCollection)document.all.tags("head")).item(null, 0);
IHTMLScriptElement scriptObject = (IHTMLScriptElement)document.createElement("script");
scriptObject.type = @"text/javascript";
scriptObject.text = "\nwindow.onload = function(){alert('loaded..');}\n\n";
((HTMLHeadElement)head).appendChild((IHTMLDOMNode)scriptObject);

这工作得很好,但我想使用:scriptObject.src并链接到我添加到项目中的资源文件。我尝试使用 RES: 协议,但 IE 找不到它。我这样做正确吗?谢谢你。

scriptObject.src = "res://C:/git/addon/ie/bin/addon.dll/script.js";

4

1 回答 1

1

你有没有尝试过

scriptObject.src = "res://C:\\git\\addon\\ie\\bin\\addon.dll/script.js";
于 2012-11-06T15:58:16.150 回答