请您查看This Demo并告诉我为什么我无法将.sale
类添加到使用{{.item
类的表的最后一列。 1}}
.find()
答案 0 :(得分:4)
您在项目中缺少一个点。它应该是
$(function () {
$('td:nth-child(6) ,td:nth-child(7)').find(".item").addClass("sale");
});
http://jsfiddle.net/poz1f1a3/2/
css
.item {
background-color: grey;
height:45px;
width:65px;
}
.sale {
background-color: yellow;
}