或者
    function dispPage()
    {
       try {
          xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
       }catch(e){}
       try{
          xmlHttp = new XMLHttpRequest();
       }catch(e){}
   
        xmlHttp.open("GET", url, true);
        //xmlHttp.overrideMimeType("text/html;charset=gb2312");//设定以gb2312编码识别数据         xmlHttp.onreadystatechange = function(){ 
        if (xmlHttp.readyState == 4) 
            if (xmlHttp.status == 200)
                document.getElementById("bodyPanel").innerHTML = gb2utf8(xmlHttp.responseBody)
                //document.write(gb2utf8(xmlHttp.responseBody))
//document.write(xmlHttp.responseText); 
        }; 
        xmlHttp.send(null); 
    }如何让其执行目标页面内的javascript的代码?