我想以两秒的间隔重复一段代码,我该怎么做?
$(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) + ';');