setInterval 调用
function direct() { console.info( "time: ", ( new Date() ).getTime() ); } function showlog() { setInterval(direct(), 1000); } function showlog_2() { setInterval( direct, 1000 ); } function showlog_3() { setInterval( function () { direct(); }, 1000 ); } function showlog_4() { setInterval( "direct()", 1000 ); } // showlog(); //=> 执行一次 // showlog_2(); //=> 每隔 1000毫秒 执行一次 // showlog_3(); //=> 每隔 1000毫秒 执行一次 // showlog_4(); //=> 每隔 1000毫秒 执行一次

浙公网安备 33010602011771号