您好我正在尝试为状态为O和P的特定行添加颜色。
我在这个显示页面中有8个不同的列(状态是其中之一)
到目前为止,我的代码看起来像这样:
echo"<tr valign='top' BGCOLOR='white'>";
if ($editmode == 1)
echo "<td valign='top'><Center><font face='Arial' size = 2><img src='closedlock.gif' alt='Closed for editing' width='30%'></td>";
else
// echo "<td><center><img src='openlock.gif' alt='Open for editing' border='0' width='30%'></td>";
echo "<td><center><font face='Arial' size = 2>$trimref</font></td>";
echo "<td><Center><font face='Arial' size = 2>".$dateshow1."</td>";
echo "<td><Center><font face='Arial' size = 2>".$logtime."</td>";
if (strcmp($userlogged,$fullusername) == 0 && $editmode <> 1 )
{
//window.open('opslog.php?ID=$IgnMsgID','opslogwindow$IgnMsID' ,'menubar =0,width=1024,height=750')
echo "<td BGCOLOR='red'><Center><font face='Arial' size = 2><a href=\"javascript:void(0)\" onclick=\"openopslog($IgnMsgID)\"><font color='blue'><b><U>".$loggeduser."</u></font></b></a></td>";
}
else if ((($status == 'O'|| $status == 'P' ) && $resvalid == 0) && $editmode <> 1)
{
//onclick=\"window.open('opslog.php?ID=$IgnMsgID','opslogwindow$IgnMsID' ,'menubar =0,width=1024,height=750')
echo "<td BGCOLOR='red'><Center><font face='Arial' size = 2><a href=\"javascript:void(0)\" onclick=\"openopslog($IgnMsgID)\"><font color='blue'><b><U>".$loggeduser."</u></font></b></a></td>";
}
else
echo "<td><Center><font face='Arial' size = 2>".$loggeduser."</td>";
echo "<td align='left'><font face='Arial' size = 2>".$notes."</td>";
echo "<td><Center><font face='Arial' size = 2>".$loc."</td>";
不幸的是,输出结果不正确。它只会使所有P和O状态警报的Initials列为红色,而不是整个行为红色。有没有人有任何建议我可以使用此代码显示状态警报P和O为红色的任何行。感谢
答案 0 :(得分:0)
设置<tr>
标记的背景颜色而不是<td>
例如:
if ($status == 'O'|| $status == 'P' ){
echo"<tr valign='top' BGCOLOR='red'>";
}else{
echo"<tr valign='top' BGCOLOR='white'>";
};
或使用如下的三元操作:
echo "<tr valign='top' BGCOLOR='".(($status == 'O'|| $status == 'P' )?"red":"white")."'>");