XML代码:
<?xml version="1.0"?>
<msglist>
  <msg>
    <ip>127.0.0.1</ip>
    <time>2008-08-18 04:37:42</time>
    <content>bbbbbbbbb</content>
  </msg>
</msglist>
JQUERY代码:
$.ajax({
    type: "POST",//POST方式发送
    url: "test.xml",//处理页面
    dataType:"xml",
    error: function(xml){   
        alert("loading xml error");   
    },
    success: function(){//AJAX发送请求成功后执行的方法
alert("aaa")
    }
});IE提示的是"loading xml error"
其他浏览器提示的"aaa"