JavaScript在页面上有一个div标签,格式如下
s = '' for (var i=1;i<=9;i++){ s += '\n' for (var j=1;j<=i;j++){ s+= i + '*' + j + '=' + (i * j) + ' ' } } console.log(s)