function a (x, y) { var i = 0; var b = function(){ console.log((x * y) + (i++)); } return b; } var c = a(1, 2); setInterval(‘c()‘, 1000);
function c (x, y) { console.log(x * y); } setInterval(‘c(1, 2)‘, 1000);
setInterval(c, 1000);
setInterval(function(){ c(1, 2); }, 1000);
在幕后,JavaScript仍需要评估和执行你给程序传递的字符串。Link
JavaScript函数setInterval()和setTimeout()正确的写法
JavaScript函数setInterval()和setTimeout()正确的写法
原文:http://www.cnblogs.com/mazey/p/7272912.html