浏览器是IE6
xml文件:<?xml version="1.0" encoding="ISO-8859-1"?>
<note>
<to>George</to>
<from>John</from>
<heading>Reminder</heading>
<body>Don't forget the meeting!</body>
</note>
为什么我用(AJAX)
xmlDoc.documentElement.getElementsByTagName("to")[0].firstChild.nodeValue; 
注:xmlDoc -由解析器创建的 XML 文档
获取to的节点值时,
加上<?xml version="1.0" encoding="ISO-8859-1"?>这一句就获取不了值,
把<?xml version="1.0" encoding="ISO-8859-1"?>这句删了就可以正常获取值,
请问是浏览问题?还是什么问题呢?怎么解决啊?