1 <div align="center" > 2 <table class="gridtable"> 3 <tbody> 4 <tr> 5 <th align="center" colspan="5">用户界面</th> 6 </tr> 7 <tr> 8 <th>编号</th> 9 <th>姓名</th> 10 <th>年龄</th> 11 <th>电话</th> 12 <th>邮箱</th> 13 </tr> 14 <tr> 15 <th></th> 16 </tr> 17 <tr> 18 <th></th> 19 </tr> 20 <tr> 21 <th></th> 22 </tr> 23 <tr> 24 <th></th> 25 </tr> 26 </tbody> 27 </table> 28 </div>
现在展示在页面上的就是这几个,例如往sql中增加用户资料超过现在设置的数量就不行了,我想做的是设置它,自动适应查找数据的数量展示出来,应该怎么做?
肯定是使用循环喽!
easyui+json
n你说的这两个我都没用过0- -
既然是变化的就要用动态的,可以在后台取对象在前台循环取值
首先,你确定应该用tr而非td?其次,就像楼上所得用循环吧!
for(i in data) {
<tr>
for(j in data[i]){
<td>data[i][j]</td>
}
</tr>
}