解决ajaxpro 9.2.17.1 中 this.onTimeout is not a function 的错误

修改core.js

---
        timeout: function() {
                try {
                        this.duration = new Date().getTime() - this.__start;
                        var r = this.onTimeout(this.duration, this);
                        if(typeof r == "undefined" || r != false) {
                                this.abort();
                        } else {
                                this.timeoutTimer = setTimeout(this.timeout.bind(this),
AjaxPro.timeoutPeriod);
                        }
                } catch(error) {
                        // Statements that execute in the event of an exception
                } finally {
                        // Statements that execute afterward either way
                }

----



参见
http://groups.google.sc/group/ajaxpro/browse_thread/thread/da617d3dc31d65cb
压缩包中是已经编译好的文件,也可以自己编译
  http://files.cnblogs.com/momo0789/AjaxPro.2.dll.zip

你可能感兴趣的:(function)