在grease monkey中要使用如下方法进行setTimeout
var f = function(){alert(1); setTimeout(f,100); }
var inst=setTimeout( f,100);