for(var i = 1; i < 10; i++){ for(var j = 1; j <= i; j++){ document.write(j + "*" + i + "=" + j*i + " ") } document.write("<br>") }
若想要排列整齐,可以用插入表格.