我做一個簡單的表格,並希望像您可以使用CSS tr:nth-child(even){background-color: #f2f2f2;}
備用背景顏色
因爲我使用IDS試圖鏈接到CSS與表格形式交替每個選項的背景顏色不同的背景顏色:
function options(){
var i =0;
var name;
$(xmlDoc).children().children().each(function(){
name = $(this).children().first().text();
if(i % 2 == 0){
$('form').append(" <input type='checkbox' id=odd'" + "value=" + name + ">"+ name + "<br>");
}
else{
$('form').append(" <input type='checkbox' id='even'" + "value=" + name + ">"+ name + "<br>");
}
i++;
});
}
但發現你只能通過在窗體中指明它來改變背景顏色。有沒有其他方法可以做到這一點?
如果你可以設置一個'jsfiddle',它會更容易解決 – tcasey
http://stackoverflow.com/questions/4148499/how-to-style-checkbox-using-css – yuriy636