我的代码:xmlhttp=new XMLHttpRequest();function a ()
{
xmlhttp.onreadystatechange=Ready;
xmlhttp.open("GET","url",true);
xmlhttp.send(null);//此Ajax请求后服务器会返回给我一个页面
}function Ready()
{
if(contentObject.readyState==4)//想在此处获得服务器返回给我的JavaScript代码中的变量param
}服务器返回给我的代码如下:<script type='text/javascript'>
var param=poqwieruoipue;
^……………………………………
</script><html>
^……………………………………
</html>