help for the jquery $.get xml in IE

help for the jquery $.get xml in IE

I am using PHP as sever side to echo xml , as follows:

test.php

<?php
echo "<?xml version=\"1.0\" encoding=\"utf-8\"?><messages><message>JJJJJJJJJJJJJJJJJ</message></messages>";
?>



Then the client side JS is :
<script type="text/javascript">
       $(document).ready(function(){
      $.get("test.php",{},function(xml){
       message = $("message",xml).text();
       alert(message);      
      });
      });
</script>



In firefox it's alert the right message . But in IE it shows nothing.
Pls help.. I am puzzle.