单元格的所有背景颜色都相同
Posted
技术标签:
【中文标题】单元格的所有背景颜色都相同【英文标题】:All background color of the cells is the same 【发布时间】:2019-04-12 02:46:49 【问题描述】:我正在为学生网创建学期地图。如果正在学习课程,则单元格颜色应为黄色。如果选课,应该是绿色的。如果课程尚未上课,单元格颜色将为红色。
我正在测试 id 为“1”的学生,在“course_status”表中有一个名为“course_status”的列,其中只有“pending”、“in_progress”和“done”。
$sql = "SELECT * FROM course_status WHERE student_id = 1";
$retval = mysqli_query( $link, $sql );
$row=mysqli_fetch_array($retval);
if($row['course_status']== 'done') $status_color = "green";
if($row['course_status']== 'in_progress') $status_color= "yellow";
if($row['course_status']== 'pending') $status_color= "red";
<td style="background-color: <?php echo $status_color; ?>;">CSCI 185
<td style="background-color: <?php echo $status_color; ?>;">CSCI 385
<td style="background-color: <?php echo $status_color; ?>;">CSCI 485
尽管学生尚未参加 CSCI 385&485,但所有单元格的背景颜色均为绿色。我只希望 CSCI 185 自从采用以来就具有绿色背景。
【问题讨论】:
当您从数据库中获取多于 1 条记录时,这是您的代码的样子吗?还是有多个带有id=1
的记录?
A) 为此创建一个查找表:[ 'done' => 'green', ... ]
使if
毫无意义。 B) green
是一个字符串,需要加引号。其他人也一样。 C)你需要把它变成一个函数并为每一行调用它。 $status_color
不会为那里的每一行神奇地改变,你必须每次都设置它。
您将需要遍历查询结果,除非它返回单行。您还需要遍历类,每行和状态生成一个 td。
id=1 的多条记录。抱歉,我尝试将颜色放在字符串中。以及如何创建和调用函数?
【参考方案1】:
尝试如下:
if($row['course_status']== 'done')
<td style="background-color:green">something</td>//bg-color will be green
else if($row['course_status']== 'in_progress')
<td style="background-color:yellow">something</td>//bg-color will be yellow
else
<td style="background-color:red">something</td> //bg-color will be red
【讨论】:
我确实有数百个 td 单元。有没有更好的办法? 可以查看here 我实际上是从那里得到这个想法的。只是没有在我的页面上工作以上是关于单元格的所有背景颜色都相同的主要内容,如果未能解决你的问题,请参考以下文章
根据存储在其他单元格中的 RGB 值动态更改单元格的背景颜色
iOS UITableView:更改表格的背景颜色会覆盖单元格的背景颜色