一个简单的方法就是把这个方法在这一秒钟内重写,过了1s之后在写回去。
比如:
function a(){ alert(1)}function b(){ a(); var c = a; a = null; setTimeout("a=c",1000);}