如何使用mshtml在IE9中获取带有命名空间前缀的属性?

发布于 2024-12-01 22:24:38 字数 1148 浏览 0 评论 0原文

我们有一个用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓦然回首 2024-12-08 22:24:38

这是一种蛮力方法,迭代所有属性:(

  // find your input element 
  IHTMLElement element = Doc3.getElementById("input1");
  // get a collection of all attributes
  IHTMLAttributeCollection attributes = (IHTMLAttributeCollection)((IHTMLDOMNode)Element).attributes;
  // iterate all attributes
  for (integer i = 0; i < attributes.length; i++)
  {
    IDispatch attribute = attributes.item(i);

    // this eventually lists your attribute
    System.Diagnostics.Debug.Writeln( ((IHTMLDOMAttribute) attribute).nodeName );
  }

抱歉,语法错误,这是我的想法。)

这会将您的输入元素视为原始 DOM 节点并迭代其属性。缺点是:您可以获得所有属性,而不仅仅是您在 HTML 中看到的属性。

Here is a brute force approach, iterating all attributes:

  // find your input element 
  IHTMLElement element = Doc3.getElementById("input1");
  // get a collection of all attributes
  IHTMLAttributeCollection attributes = (IHTMLAttributeCollection)((IHTMLDOMNode)Element).attributes;
  // iterate all attributes
  for (integer i = 0; i < attributes.length; i++)
  {
    IDispatch attribute = attributes.item(i);

    // this eventually lists your attribute
    System.Diagnostics.Debug.Writeln( ((IHTMLDOMAttribute) attribute).nodeName );
  }

(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.

月下客 2024-12-08 22:24:38

更简单

IHTMLElementCollection InputCollection = Doc3.getElementsByTagName("input1");
foreach (IHTMLInputElement InputTag in InputCollection) { Console.WriteLine(InputTag.name); }

More simple

IHTMLElementCollection InputCollection = Doc3.getElementsByTagName("input1");
foreach (IHTMLInputElement InputTag in InputCollection) { Console.WriteLine(InputTag.name); }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文