tr标签id属性table2无法展示success : function(resp) { var sdata = resp; console.log(Object.keys(resp).length); if (Object.keys(resp).length === 0) { // 如果返回的数据为空对象 sdata = [undefined]; // 将 sdata 设置为空数组 } var totalList = resp.dataTot; console.log(totalList[0].managecom); $("#managecom").text(totalList[0].managecom); $("#tb1").text(totalList[0].tb1); $("#tb2").text(totalList[0].tb2); $("#tb3").text(totalList[0].tb3); $("#tb4").text(totalList[0].tb4); $("#tb5").text(totalList[0].tb5); $("#tb6").text(totalList[0].tb6); $("#tb7").text(totalList[0].tb7); $("#tb8").text(totalList[0].tb8); $("#tb9").text(totalList[0].tb9); $("#tb10").text(totalList[0].tb10); $("#tb11").text(totalList[0].tb11); $("#table2").show(); fnCallback(sdata); },
时间: 2024-03-27 16:39:18 浏览: 51
resp-2022.2.0.0.exe
请检查一下你的 HTML 代码中是否存在 ID 为 "table2" 的元素,以及它是否是一个 table 标签。如果没有,那么就需要在 HTML 中添加一个 ID 为 "table2" 的 table 标签,比如:
```
<table id="table2">
<thead>
<tr>
<th>表头1</th>
<th>表头2</th>
<th>表头3</th>
</tr>
</thead>
<tbody>
<tr>
<td>数据1</td>
<td>数据2</td>
<td>数据3</td>
</tr>
<tr>
<td>数据4</td>
<td>数据5</td>
<td>数据6</td>
</tr>
<!-- 其他行 -->
</tbody>
</table>
```
如果已经存在 ID 为 "table2" 的元素,但是仍然无法展示,那么可能是因为 CSS 样式的问题。你可以尝试添加一些样式来修复问题,比如:
```
#table2 {
display: table;
}
```
这个样式会让元素以 table 的形式展示。
阅读全文