文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>js 获取类变量所在的对象

js 获取类变量所在的对象

时间:2009-05-20  来源:yangguosdxl

js 获取类变量所在的对象

 这样向XMLHttpRequest注册函数:doReadyStateChange 后,在doReadyStateChange
中使用this只会得到XMLHttpRequest对象。但是用this.xmlHttpReq.placeObj就可以得
到xmlHttpReq所在的对象!
       

function RequestInterface(stack, date, type) {
            //attributes.
            XMLHttpRequest.prototype.placeObj = this;
            this.xmlHttpReq;
            this.responseData;

            //methods.
          this.doReadyStateChange = doReadyStateChange;
        }

// address must relative address
        function requestData(address, requestCmd) {
            //alert('requestCmd: ' + requestCmd);
            this.xmlHttpReq = new XMLHttpRequest();
            this.xmlHttpReq.open("POST", address, true);
            this.xmlHttpReq.send(requestCmd);
            this.xmlHttpReq.onreadystatechange = 

                         this.doReadyStateChange;
        }

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载