在js中制作一个十行十列的表格,要求每个单元格随机变色
onload=function(){vartab=document.createElement("table");
tab.style.margin="0auto";
tab.style.width="500px";
vartb=document.createElement("tbody");
tab.appendChild(tb);
for(vari=0;i<10;i++){
varrow=tb.insertRow(tb.rows.length);
for(varj=0;j<10;j++){
varcol=row.insertCell(row.cells.length);
col.style.width="50px";
col.style.height="50px";
vara=Math.floor(Math.random()*255);
varb=Math.floor(Math.random()*255);
varc=Math.floor(Math.random()*255);
col.style.backgroundColor="rgb("+a+","+b+","+c+")";
}
}
document.body.appendChild(tab);
}
下一篇:腾讯课堂网页版和客户端的区别
多重随机标签