#问题遇到的现象和发生背景for循环中输出的数据怎样可以做到每四次换行
js的话可以 \n或者标签都能换行呀
if(a%4)==0 document.write("123<br>456"); if(a%4)==0 alert("123\n456");
取余4等于0的时候换行