Tag: this

Javascript的setInterval和`这个`解决scheme

我需要从我的setInterval处理程序访问this prefs: null, startup : function() { // init prefs … this.retrieve_rate(); this.intervalID = setInterval(this.retrieve_rate, this.INTERVAL); }, retrieve_rate : function() { var ajax = null; ajax = new XMLHttpRequest(); ajax.open('GET', 'http://xyz.com', true); ajax.onload = function() { // access prefs here } } 如何在ajax.onload访问this.prefs?