请看看编码是否规范,使用是否方便

HTML:

<table id="customTableView">
  
<thead>
    
<tr>
      
<td>编号</td>
      
<td>姓名</td>
    
</tr>
  
</thead>
  
<tbody><!--template-tbody-->
    
<tr name="" style=" display:none"><!--template-tr-->
      
<td bind="0"><span class="red">{value}</span></td>
      
<td bind="1"><strong>{value}</strong></td>
    
</tr>
  
</tbody>
</table>
<hr />
<table id="productTableView">
  
<thead>
    
<tr>
      
<td>编号</td>
      
<td>名称</td>
    
</tr>
  
</thead>
  
<tbody>
    
<tr style=" display:none">
      
<td bind="0"><span class="red">{value}</span></td>
      
<td bind="1"><strong>{value}</strong></td>
    
</tr>
  
</tbody>
</table>

相关文章: