这样的事情怎么样?
(function(open) { XMLHttpRequest.prototype.open = function(m, u, a, us, p) { this.addEventListener('readystatechange', function() { console.log(this.response); }, false); open.call(this, m, u, a, us, p); }; })(XMLHttpRequest.prototype.open)
您可以覆盖open函数,然后根据需要进行响应。
这样的事情怎么样?
(function(open) { XMLHttpRequest.prototype.open = function(m, u, a, us, p) { this.addEventListener('readystatechange', function() { console.log(this.response); }, false); open.call(this, m, u, a, us, p); }; })(XMLHttpRequest.prototype.open)
您可以覆盖open函数,然后根据需要进行响应。