解决方案 »

  1.   

    this.xmlHttp.readyStatethis.xmlHttp.status
      

  2.   

    做闭包
        this.xmlHttp.onreadystatechange = (function (me) {
            return function () {
                if (me.readyState == 4 && me.status == 200) {//注意闭包变量me,不要用this
                    callBack(jma, me.responseText);
                } 
            }
        })(this.xmlHttp);