1.定義css
#product-list .list-line-even {
background: #e0f8f8;
}
#product-list .list-line-odd {
background: #f8b0f8;
}
2.在頁面上引用
<tr valign="top" class="<%= cycle('list-line-odd', 'list-line-even') %>">
3.查看效果
#product-list .list-line-even {
background: #e0f8f8;
}
#product-list .list-line-odd {
background: #f8b0f8;
}
2.在頁面上引用
<tr valign="top" class="<%= cycle('list-line-odd', 'list-line-even') %>">
3.查看效果