九九乘法表for(i=1;i<=9;i++) { for(j=1;j<=9;j++) { console.log(i+ '*' +j+ ' = ' + i*j); }}注意这个代码需要在firefox浏览器下运行