gpt4 book ai didi

html - 根据 TD 或多或少的值在表的 td 上添加一个 css 类

转载 作者:行者123 更新时间:2023-11-28 01:11:43 24 4
gpt4 key购买 nike

我有一个 html 表格,里面有两个 td 内容。这是一个动态的td。我想实现这样的功能,比如在每个表行中,每个大 td 值文本颜色显示为绿色,较小值文本显示为红色;

请找到我的源代码:

forData+='<tr><td>'+forPlant+'</td><td>'+forAsking+'</td><td>'+forProduction+'</td></tr>';
$(".forTable").append(forData);
if(forAsking<forProduction){
console.info("Less value");
//-----here I want to display Whatever value is less it displayed as red and other is green
}else{
//---same manner followed in there as well
console.info("More Asking");
}

最佳答案

为这些颜色创建 2 个类

.green{
color:green;
}

.red{
color:red;
}

然后先比较值,然后附加结果。

forData+='<tr><td>'+forPlant+'</td>';

if(forAsking<forProduction){

forData+='<td class="green">'+forProduction+'</td><td class="red">'+forAsking+'</td>';

}else{

forData+='<td class="green">'+forAsking+'</td><td class="red">'+forProduction+'</td>';
}

forData+= '</tr>';

$(".forTable").append(forData);

You can see the demo here

关于html - 根据 TD 或多或少的值在表的 td 上添加一个 css 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37432079/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com