IE9 selectSingleNode missing from beta, how to overcome this in JavaScript?

喜你入骨 提交于 2019-12-18 07:12:49

问题


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

http://social.msdn.microsoft.com/Forums/en/iewebdevelopment/thread/0dc55c4d-4a63-4a12-b5cc-e4e12cc13d91

Anyone have idea how to resolve this, is there some other way of XPath traversal trough XMLDocument that is "IE9 Way"?


回答1:


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.



来源:https://stackoverflow.com/questions/3820757/ie9-selectsinglenode-missing-from-beta-how-to-overcome-this-in-javascript

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!