2017-01-20 97 views

回答

0

使用CSS

嘗試破解

.inventory_related thead { 
 
    display: none; 
 
}
<table> 
 
    <thead> 
 
    <th>header 1</th> 
 
    <th>header 2</th> 
 
    </thead> 
 
    <tbody> 
 
    <td>row value 1</td> 
 
    <td>row value 2</td> 
 
    </tbody> 
 
</table> 
 
<table class='inventory_related'> 
 
    <thead> 
 
    <th>header</th> 
 
    <th>header 2</th> 
 
    </thead> 
 
    <tbody> 
 
    <td>row value 3</td> 
 
    <td>row value 4</td> 
 
    </tbody> 
 
</table>