0
我想重複一段代碼,間隔兩秒鐘,我該怎麼做?功能內循環
$(document).keydown(function(e) {
kkeys.push(e.keyCode);
if (kkeys.toString().indexOf(konami) >= 0) {
$(document).unbind('keydown',arguments.callee);
$('.preview').attr('style', 'background: #'+Math.floor(Math.random()*16777215).toString(16) + ';');
}
});
這個被重複:
$('.preview').attr('style', 'background: #'+Math.floor(Math.random()*16777215).toString(16) + ';');
你所說的「循環」是什麼意思? – Blender
for循環? while循環?遞歸循環? –
循環在哪裏?循環由'for','while'/'do..while'語句組成。 – mohkhan