我在表格中添加了“状态”列,并在其中显示了输入的数字以及ID和内容。
$res_array = array();
// fetch all the entires one by one
while($row=mysql_fetch_array($res)){
// put query result in php array
$array = array('id' => $row['id'],
'content' => $row['content'],
'status'=> $row['status']);
// add into the big array
$res_array[] = $array;
// update the list view
for (var i=0; i< res.length; i++){
$("<li/>", {"id": res[i].id, "text": res[i].content + res[i].status}).appendTo(todo.list);
// Extend the width if msg is too long
if(res[i].content.length >= 35){
$('#'+res[i].id).css("height","50px");
}
}
上面你可以看到它是如何显示的,我仍然无法得到改变内容颜色的陈述。
我希望内容根据状态编号更改颜色。 我不知道代码,但我会想象它将是状态的if语句,但我需要帮助 提前致谢。
答案 0 :(得分:2)
如果您有一个有限且定义的状态代码列表,那么我建议您只需将它们添加到CSS类(例如status5)中,然后为您返回的每个状态代码定义颜色/样式作为基本CSS规则
.status5 { color: red }