九九乘法表:<br /><script>for(var i=0;i<10;i++){ for(var j=1;j<=i;j++) { var a=j*i document.write(j+"*"+i+"="+a+" ") } document.write("<br />")}</script>