<script>
var _st = window.setTimeout;
window.setTimeout = function(fRef, mDelay) {
if (typeof fRef == 'function') {
var argu = Array.prototype.slice.call(arguments,2);
var f = (function(){ fRef.apply(null, argu); });
return _st(f, mDelay);
}
return _st(fRef,mDelay);
}
function test(x){
alert(x);
}
window.setTimeout(test,1000,'fason');
//call,apply需要高版本支持,低版本的call,apply实现不在这罗嗦了~~
</script>
////////////////////////////////////////////////////////////////////////////////////////////////////
<script>
var _st = window.setTimeout;
window.setTimeout = function(fRef, mDelay) {
if (typeof fRef == 'function') {
var argu = Array.prototype.slice.call(arguments,2);
var f = (function(){ fRef.apply(null, argu); });
return _st(f, mDelay);
}
return _st(fRef,mDelay);
}
function test(x,y){
alert(x+y);
}
window.setTimeout(test,1000,'fason','YYYY');
</script>
posted on 2006-04-03 15:40
汪杰 阅读(456)
评论(2) 编辑 收藏 引用 所属分类:
javascript 、
hengxing网站js