Я хочу проанализировать XML с помощью dojo (Ajax) в IE, и другой браузер работает отлично.
Пример JavaScript Dojo:
ar xhrArgs = {
url: link,
sync:true,
preventCache:true,
load: function(responseresponse,ioArgs){
var dom = dojox.xml.parser.parse(responseresponse);
var docNode = dom.documentElement;
}
error: function(error){
alert("An unexpected error occurred: " + error);
//IN IE go to here if the XML have characters like this áéí an others
}
Пример XML:
<?xml version=\1.0\ encoding=\ISO-8859-1\ ?>
<xml>
<accountNumber>áéíóú</accountNumber>
</xml>