window.setTimeout = function(funRef, delayTime) { if (typeof funRef === 'function') { var args = Array.prototype.slice.call(arguments,2); var f = function(){ funRef.apply(null, args); }; // 返回无参数方法 return $st(f, delayTime);//调用无参数方法 } return $st(funRef,delay...