所用的代码如下:
<script language="javascript" type="text/javascript">
<!--
var xmlhttp;
function loadXMLDoc(url)
{
xmlhttp=null;
if(window.XMLHttpRequest)
    {
  xmlhttp=new XMLHttpRequest();
    }
 else if(window.ActiveXObject)
    {
 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
 if(xmlhttp!=null)
 {
 xmlhttp.onreadystatechange=state_Change;
            xmlhttp.open("GET",url,true);
xmlhttp.send(null);
 
 }
     else{
  alert("你的浏览器不支持XMLHTTP!");
  
 }
}
 function state_Change()
 {
 if(xmlhttp.readyState==4)
 {
 if(xmlhttp.status==200)
 {
 document.write(xmlhttp.responseText);
 
 }
 else
 {
 alert("Problem retrieving data:"+xmlhttp.statusText);
 
 }
 }
 }
loadXMLDoc('postSend.html');
//-->
</script>无法实现调用页面数据目的,请问各位兄弟姐妹们该怎么修改?