标签:随机 cell 表格 随机数 aci width cin fun add
function tab(n,m){
document.write("<table border=1 cellpadding=0 cellspacing=0 >");
for(var i=0; i<n; i++){
document.write("<tr>");
for(var j=0; j<m; j++){
document.write("<td style=‘width: 40px; height: 40px;‘>");
document.write( Math.round( Math.random()*100 ) );
document.write("</td>");
}
document.write("</tr>");
}
document.write("</table>");
}
tab(10,10);
js函数在页面上打印一个N行M列的表格,表格内容填充为1~100之间的随机数
标签:随机 cell 表格 随机数 aci width cin fun add
原文地址:https://www.cnblogs.com/cupid10/p/12781856.html