setTimeout传参

快使用闭包,哼哼哈嘿

function f(v){
    return function f_(){
        alert(v);
    }
}
setTimeout(f('haha'),1000)

你可能感兴趣的:(setTimeout传参)