1.乘法口诀JS写法,2.获取6位数的验证码方法JS
乘法口诀方法var str="" for(var i=1;i<=9;i++){ for(var j=1;j<=i;j++){ str+=j + "×" + i + "=" + i * j+"\t"; } str+="\n" // docum