当前位置: 代码迷 >> Web前端 >> setTimeout 参数传函数步骤
  详细解决方案

setTimeout 参数传函数步骤

热度:763   发布时间:2013-01-22 10:23:54.0
setTimeout 参数传函数方法
var callback,_this = this;
callback = function() {
      return _this.executecallback(key.text);
};
timer = setTimeout(callback, this.getOpt('delaytime'));

?