我认为从Sphinx生成的表并不漂亮,因为它为表生成以下HTML代码。
<table border="1" class="docutils">
<colgroup>
<col width="43%" />
<col width="29%" />
<col width="29%" />
</colgroup>
<thead valign="bottom">
<tr><th class="head">Graph</th>
<th class="head">HIR</th>
<th class="head">AIR</th>
</tr>
</thead>
<tbody valign="top">
<tr><td>Graph</td>
<td>Circuit</td>
<td>System</td>
</tr>
</tbody>
</table>
我如何才能成为漂亮的人,例如斑马桌?
HTML生成的html有jQuery,根据this site,只有一行代码可以有一个斑马表,但我不知道如何使用jQuery制作斑马表。
$("tr:nth-child(odd)").addClass("odd");
答案 0 :(得分:0)
我在doctools.js中添加以下代码
$(document).ready(function() {
Documentation.init();
$('tbody tr:even').css('background-color','#dddddd');
});