0

希望这是有道理的,我希望能画出清晰的画面。

<?php $rx_event_color = $rx_image_color = '#FF0000';
if ($a['rx_event_exists'] == 1) { $rx_event_color = '#00FF00'; }

if ($a['rx_scanned'] == 1) { $rx_image_color = '#00FF00'; }
else if ($a['rx_scanned'] > 1) { $rx_image_color = '#FFFF00'; }
?>

我不希望整个背景 td 改变颜色,只改变基于事件的 td 内的文本(sql 中的数据)

if ($a['rx_event_exists'] == 0)
    {
    echo "<tr><td style='background:$rx_event_color'><a href='" 
                    . matry::here_to('new', array('tfilt'=>'WR', 'pfilt'=>$patient->code))
                    . "'>**Rx Event Not Created**</a></td></tr>";
    }

我试图将背景更改为颜色,并尝试将其添加到 div 中......我认为它应该比原来更容易......这就是我在这里问的原因。提前感谢我的朋友们。

4

1 回答 1

2

您需要将样式属性移动到锚标记,因为链接的样式控制文本的颜色,而不是td. 根据您的目的,颜色和背景颜色可以在这里互换使用。

<td><a href='...' style='color:$rx_event_color'>...</a></td>

或者,您可以使用类:

.notfound a { color: red }

<td class="notfound"><a href="...">...</a></td>
于 2013-02-06T20:07:24.240 回答