【发布时间】:2016-01-26 16:41:38
【问题描述】:
我正在使用我得到的 json 响应动态显示表格。
我面临的问题是,表格中显示的数据以及下面的数据
Symbol Close Change(Rs) Change(%) AS ON
Symbol Close Change(Rs) Change(%) AS ON
Symbol Close Change(Rs) Change(%) AS ON
Symbol Close Change(Rs) Change(%) AS ON
这是我的代码
<section class="widget">
<div>
<table id="1d" class="losstable tablesorter">
<thead>
<tr>
<th>Symbol</th>
<th>Close</th>
<th>Change(Rs)</th>
<th>Change(%)</th>
<th>AS ON</th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="1w" class="losstable tablesorter">
<thead>
<tr>
<th>Symbol</th>
<th>Close</th>
<th>Change(Rs)</th>
<th>Change(%)</th>
<th>AS ON</th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="2w" class="losstable tablesorter">
<thead>
<tr>
<th>Symbol</th>
<th>Close</th>
<th>Change(Rs)</th>
<th>Change(%)</th>
<th>AS ON</th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="3w" class="losstable tablesorter">
<thead>
<tr>
<th>Symbol</th>
<th>Close</th>
<th>Change(Rs)</th>
<th>Change(%)</th>
<th>AS ON</th>
</tr>
</thead>
<tbody></tbody>
</table>
<table id="1m" class="losstable tablesorter">
<thead>
<tr>
<th>Symbol</th>
<th>Close</th>
<th>Change(Rs)</th>
<th>Change(%)</th>
<th>AS ON</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</section>
这是小提琴
http://jsfiddle.net/abkNM/7607/
你能告诉我如何解决这个问题吗??
【问题讨论】:
标签: jquery