根据表格内容条件改变同一行字体颜色


    是我
        涨
    已下单
    1
    0
                                   

    是我
    跌
    持仓中
    3
    0

//js
$("#mylist-tb tr td:nth-child(3)").each(function() {
        if($(this).text() == '已下单') {
            $(this).parent().css("color", "#4b8fa4");
        } else {
        $(this).parent().css('color', '#fff');
    }
});

你可能感兴趣的:(根据表格内容条件改变同一行字体颜色)