document.write("1000以内的奇数为:"); document.write("<br>"); for(i = 0 ; i<1000; i ++){ if( i % 2 ==1){ document.write( i + " "); } }