html字符串拼接

html字符串拼接

通过下面方法即可:构造100条数据var datas = []for(var i = 1i &lt=100i++){datas.push('item' + i)} 第一种最直接的,也是初学者就会想到的方式,所
html-css170