javascript点滴

1、写用户脚本时经常使用匿名函数,它们很适合创建一次性函数,然后当作参数传递给类似 window.setTimeout 这样的函数。
如:延迟调用函数的最佳方式
window.setTimeout(function() { alert('Hello world!') }, 1000);
引用
http://wiki.mozcn.org/index.php/Firefox:Dive_Into_Greasemonkey/2.3._Coding_your_user_script

你可能感兴趣的:(JavaScript,PHP,脚本,firefox)