写出小99运算法则
for(var i = 1;i<10;i++){ for(var a = 1;a<=i;a++){ document.write(a + "*" + i + "=" + a*i ); } document.write("<br />"); }