我有这个 xml 文件
<form> <age>18 To 25~18-25</age><religion>No Religious Belief~8</religion><mothertongue>Any~1</mothertongue><countries>Any~0</countries><work_status>Any~2</work_status><photo>Any~0</photo> </form>
我想获取节点国家的节点值(按名称,而不是按位置,因为位置可能会有所不同)。
解析后,我在我的javascript代码中使用它
xmlDoc.getElementsByTagName("countries")[0].childNodes[0].nodeValue
它在 Mozilla 中给了我正确的值,但在 ie 中却没有,出现需要对象的错误
请帮忙