在用document.write()时,直接写字符串没问题
document.write(“ABCD”);
但如果将字符串放到数组变量中,写不出来
var chapterlist=new Array((1,7),(2,5),(3,10),(4,5)(5,8),(6,7),(7,5),(8,7),(9,9));
document.write(chapterlist[0][0]);
这是为什么呢?
在用document.write()时,直接写字符串没问题
document.write(“ABCD”);
但如果将字符串放到数组变量中,写不出来
var chapterlist=new Array((1,7),(2,5),(3,10),(4,5)(5,8),(6,7),(7,5),(8,7),(9,9));
document.write(chapterlist[0][0]);
这是为什么呢?
这里少了一个逗号
var chapterlist=new Array((1,7),(2,5),(3,10),(4,5),(5,8),(6,7),(7,5),(8,7),(9,9));
console.log(chapterlist)
document.write(chapterlist[0]);