可能顯示的文件:
How to alternate HTML table row colors using JSP?
Table row - Giving alternate colors交替的顏色在表中的jsp使用CSS
任何人都可以用於與使用CSS在交替顏色的表格動態添加行提供基本碼jsp文件請提供此代碼?
可能顯示的文件:
How to alternate HTML table row colors using JSP?
Table row - Giving alternate colors交替的顏色在表中的jsp使用CSS
任何人都可以用於與使用CSS在交替顏色的表格動態添加行提供基本碼jsp文件請提供此代碼?
基本上有兩種選擇:
感謝seanizer – 2010-10-30 09:48:50
瀏覽器支持嗎? IE具體? – 2010-10-29 16:12:09
它是官方的CSS 3我相信在IE9之前不是這樣,另一種方法是查看jQuery.com,因爲它包含一個支持這些構造的CSS選擇器,並允許您創建您正在尋找的交替效果。 – Lazarus 2010-10-29 16:14:18
回答我自己的問題:不,他們沒有。 http://www.quirksmode.org/css/contents.html#t38 – 2010-10-29 16:14:32
<table>
<?
boolean evenRow = true;
for (int i = 0; i < numRowsToDisplay; i++)
{
?>
<tr class="<?= evenRow? "evenrowstyle" : "oddrowstyle" ?>"><td>whatever</td></tr>
<?
evenRow = !evenRow;
}
?>
</table>
感謝riley的支持。 – 2010-10-30 09:47:26
在
<style>
#TableID tr:nt-child(odd){
background-color:white;
}
#TableID tr:nth-child(even){
background-color:silver;
}
</style>
在多個瀏覽器中失敗:http://www.quirksmode.org/css/contents.html#t38 – 2010-10-29 16:16:00
感謝父親風暴 – 2010-10-30 09:48:03
你試圖[搜索您的問題(http://stackoverflow.com/search?q=css+alternating+row+color)? – oezi 2010-10-29 16:11:15