for (var i = 0; i <5; i++) { setTimeout(function() { document.write(i+" "); }, 1000); } document.write(i+" ");要求输出5 0 1 2 3 4怎么改?