如何使用mshtml在IE9中获取带有命名空间前缀的属性?
我们有一个用 C# 编写的浏览器帮助对象 (BHO),它在 IE8 中运行得很好。但是,在 IE9 中不再可以访问命名空间中的标签和属性。例如,
<p xmlns:acme="http://www.acme.com/2007/acme">
<input type="text" id="input1" value="" acme:initial="initial"/>
</p>
IE8 中的以下工作:
IHTMLElement element = doc.getElementById("input1");
String initial = element.getAttribute("evsp:initial", 0) as String;
IE8 将“acme:initial”视为一个文本标记,而 IE9 尝试使用“acme”作为命名空间前缀来更加了解命名空间。
使用 getAttributeNS 似乎合适,但似乎不起作用:
IHTMLElement6 element6 = (IHTMLElement6)element;
String initial6 = (String)element6.getAttributeNS("http://www.acme.com/2007/acme",
"initial");
在上面,element6 设置为 mshtml.HTMLInputElementClass,但initial6 为 null。
由于旧的文本令牌和命名空间方法都不起作用,看起来我们陷入了困境。
如果包含具有命名空间前缀的属性,那么迭代元素的实际属性也可以。
安装了 IE9 后有没有办法获取命名空间前缀属性的值?
一些细节: Microsoft.mshtml.dll 的默认 PIA 是版本 7。 IE9 使用 mshtml.dll 版本 9。 我们使用 c:\C:\Windows\System32\mshtml.tlb(随 IE9 安装)生成缺少的接口(例如 IHTMLElement6)并将其包含在我们的项目中。 我们过去已经成功地将这种技术用于其他 IE(N-1)、IE(N) 差异。
We have a browser help object (BHO) written in C# that works just fine in IE8. However, accessing tags and attributes in a namespace no longer works in IE9. For example, with
<p xmlns:acme="http://www.acme.com/2007/acme">
<input type="text" id="input1" value="" acme:initial="initial"/>
</p>
the following works in IE8:
IHTMLElement element = doc.getElementById("input1");
String initial = element.getAttribute("evsp:initial", 0) as String;
IE8 treats "acme:initial" as one text token whereas IE9 tries to be more namespace aware with "acme" as the namespace prefix.
Using getAttributeNS seems appropriate, but it does not seem to work:
IHTMLElement6 element6 = (IHTMLElement6)element;
String initial6 = (String)element6.getAttributeNS("http://www.acme.com/2007/acme",
"initial");
In the above, element6 is set to an mshtml.HTMLInputElementClass, but initial6 is null.
Since neither the old text-token nor namespace approach works, it looks like we're stuck.
It would also be fine to iterate through the actual attributes of an element, if attributes with a namespace prefix are included.
Is there a way with IE9 installed to get the value of a namespace-prefixed attribute?
Some details:
The default PIA for Microsoft.mshtml.dll is version 7.
IE9 uses mshtml.dll version 9.
We use c:\C:\Windows\System32\mshtml.tlb (installed with IE9) to generate missing interfaces such as IHTMLElement6 and include these in our project.
We have successfully used this technique in the past for other IE(N-1), IE(N) differences.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一种蛮力方法,迭代所有属性:(
抱歉,语法错误,这是我的想法。)
这会将您的输入元素视为原始 DOM 节点并迭代其属性。缺点是:您可以获得所有属性,而不仅仅是您在 HTML 中看到的属性。
Here is a brute force approach, iterating all attributes:
(Sorry for syntax errors, this came from my head.)
This treats your input element as raw DOM node and iterates its attributes. The drawback is: you get every attribute, not only the ones you see in HTML.
更简单
More simple