IE9 selectSingleNode 在测试版中缺失,如何在 JavaScript 中克服这个问题?
Internet Explorer 9 中的 XMLDocument 对象不再包含 selectSingleNode 基于 Xpath 的遍历的定义。
当然,我用谷歌搜索了一下,发现了这个线程,不确定它是否因规范而丢失,或者事实上它仍处于“测试阶段”。
任何人都知道如何解决这个问题,是否有其他方式通过XMLDocument进行XPath遍历,即“IE9方式”?
XMLDocument object in Internet Explorer 9 does not contain definition for selectSingleNode Xpath-based traversal anymore.
Of course, I googled a little and came across this thread, where it is unsure is it missing by specification or by the fact it is still "in beta".
Anyone have idea how to resolve this, is there some other way of XPath traversal trough XMLDocument that is "IE9 Way"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XPath 在 IE9 的原生 XML 支持中不可用;我们建议改为使用选择器 API。如果需要,使用 MSXML ActiveX 对象仍然可以使用 XPath 支持。
XPath is not available in IE9's native XML support; we recommend moving to the Selectors API instead. If required, XPath support is still available using the MSXML ActiveX objects.