function debounce(fn, wait) {
        var t;
        return function () {
            var _this = this;
            var args = arguments;