标签:
正常情况下可以这么写:
jQuery(node).find(xpath.replace("//", ""))[0];但是在IE8下得到的是undefined应该要这么写:
var xmlDoc = jQuery.parseXML(node);jQuery(xmlDoc).find(xpath.replace("//", ""))[0];
IE8 jquery解析xml的兼容问题
原文地址:http://www.cnblogs.com/attlia/p/5359903.html