// 不建议直接传递字符串! setInterval("alert('Hello world!')",1000); // 推荐调用方式 setInterval(function(){ alert("Hello world!"); },1000)