var qq="<tablestyle='350px;' id='tablehelp'>";
var jjj=0;
for(var di=0;di<tmp.Rows.length;di++)
{
if(di%3==0)
{
jjj+=1;
qq+="<tr>";
}
if(role==1)
qq+="<td align='left' style='100px;'><input type='checkbox' id='dep"+tmp.Rows[di].id+"' name='dep"+tmp.Rows[di].username+"' /><label>"+tmp.Rows[di].username+"</label></td>";
else if(role==2)
{
qq+="<td align='left' style='100px;'><input type='checkbox' id='dep"+tmp.Rows[di].ID+"' name='dep"+tmp.Rows[di].DepartName+"' /><label>"+tmp.Rows[di].DepartName+"</label></td>";
}
if(jjj%3==0)
qq+="</tr>";
else if (di==tmp.Rows.length-1)
{
qq+="</tr>";
}
}
qq+="</table>";
↓
↓
↓
var qq="<table cellspace='1' style='350px;' id='tablehelp'>";
<style type="text/css">
#tablehelp{
background-color:#000000;
}
#tablehelp tr{
background-color:#FFFFFF;
}
</style>