SOURCE

console 命令行工具 X clear

                    
>
console
$(function(){
  CreateTable();
})
var str="";var tr1;
function CreateTable()
{
  for(var i=1;i<26;i++)
  {
    str+="<td>"+i+"</td>";
    if(i%5==0)
    {
      tr1="<tr>"+str+"</tr>";
      str="";
    }
		$("#NeiRong").html(tr1);
  }

}
<div id='NeiRong'>
  
</div>
table
{
  border-collapse: collapse;
}
table tr td
{
 border:1px solid black; 
  width:50px;
  height:50px;
  text-align:center;
  vertical-align:center; 
}
table tr:nth-child(2n)
{
  background-color:#d6d6d6;
}