1. setInterval(update,1000); 一秒后执行update函数 2. setInterval(update(),1000); 立即执行update函数 3. setInterval("update()",1000); 一秒后执行update函数