根据单元格值更改行背景颜色

时间:2017-03-26 14:54:58

标签: jquery html css tablerow

我需要根据单元格值更改表格行背景颜色,在此代码中我根据单元格值更改表格单元格背景颜色。但是我需要根据单元格值更改整个行背景颜色。我可以这样做吗。 ..

<script>
    $(document).ready(function () {
    $('body').append('<div class="container" ><h4 style="color:#069">Batch-4 2nd Semester Timetable</h4></div><br>');

    var html = '<div class="container" ><table class="table table-striped"></div>';
    html += '<tr>';
    var flag = 0;

    var data2   =   <?php echo $valMS; ?>;
    $.each(data2[0], function(index, value){
        html += '<th>'+index+'</th>';
    });
    html += '</tr>';

     $.each(data2, function(index, value){

        html += '<tr>';

        $.each(value, function(index2, value2){

            if(value2 == "Java"){
                html += '<td style="background-color: #7e57c2;">'+value2+'</td>';
            }
            else{
                html += '<td>'+value2+'</td>';
            }
        });


        html += '</tr>';
     });


     html += '</table>';
     $('body').append(html);
     console.log(html);
});
    </script>

2 个答案:

答案 0 :(得分:5)

在身体结束前添加此项

<script>
$(document).ready(function(){
$(".cell-java").parent().css("background-color","red");
});
</script>

修改你的代码,这样就可以根据它的值将类“cell-java”添加到td

  if(value2 == "Java"){
                    html += '<td style="background-color: #7e57c2;" class="cell-java">'+value2+'</td>';
                }

答案 1 :(得分:0)

在jQuery中,您有一个parent()方法。看看this Demo

var allCells = $(".row > div");

$.each(allCells, function (index, child) {
    if (child.textContent === "Desired value") {
        $(child).parent().css("background-color", "red");
    }

});

首先,我查找.row类的所有子(单元格),并将它们分配给变量allCells

接下来,我遍历所有这些内容并检查其文本是否匹配:child.textContent === "Desired value"

如果匹配,则更改其父css:$(child).parent().css("background-color", "red");