js 解析XML 在Edge浏览器下面 无法准确读到节点属性值
Dom.documentElement.childNodes[j].attributes[2] 这个是大众写法 在win10的edge浏览器中无法读到 顺序会倒着
那么我们就要用下面这个直接读取节点属性值
Dom.documentElement.childNodes[j].getAttributeNode("type")
js 解析XML 在Edge浏览器下面 无法准确读到节点属性值
Dom.documentElement.childNodes[j].attributes[2] 这个是大众写法 在win10的edge浏览器中无法读到 顺序会倒着
那么我们就要用下面这个直接读取节点属性值
Dom.documentElement.childNodes[j].getAttributeNode("type")