0

我找到了一个讨论如何根据行的值更改 html 表的行颜色的主题。就我而言,该解决方案不起作用。我想根据与表格行关联的类的值来更改每一行的颜色。例如:如果类是红色的“红色”,则将行着色为红色,但为其他人保持默认颜色。我能做些什么来完成这项工作?

    <table class="table table-striped" id="mytable">
      <thead>
        <tr>
          <th>Nom du cours</th>
          <th>Matière</th>
          <th>Date d'enregistrement</th>
          <th>Date d'apprentissage</th>
          <th>Nombre d'études</th>
          <th>Actions</th>
        </tr>
      </thead>
      <tbody>
        <?php
          while($cour = $load->fetch()){
            if(condition){
                $data = "red";
            }else{
                $data = "none";
            }
            echo '
                <tr id = "cours_row" class='.$data.'>
                <td class="nom_cours">'.$cour['nom_cours'].'</td>
                <td class="nom_matiere">'.$cour['nom_matiere'].'</td>
                <td class="first_append">'.$cour['first_append'].'</td>
                <td class="next_append">'.$formater -> format(strtotime($cour['next_append'])).'</td>
                <td class="number_append">'.$cour['number_append'].'</td>
                <td class="actions">Actions</td>
            </tr>
            ';
           }
         ?>
      </tbody>
    </table>
4

1 回答 1

0

决定在 PHP 中分配什么:

$data = condition?"red":"natural";

CSS:

.red {
    background-color: red;
}
.natural {
    background-color: inherit;
}
于 2018-08-28T17:54:51.880 回答