gpt4 book ai didi

javascript - 使用 Jquery 设置条件时如何定位特定行

转载 作者:行者123 更新时间:2023-12-03 08:09:35 24 4
gpt4 key购买 nike

仅当该行具有 glyphicon glyphicon-ok-sign 类时,我才想向该行添加特定颜色。到目前为止,我已经完成了这段代码,但它仍然不起作用(它针对所有行)。最终结果会是这样的。

$("div").addClass(function(index, currentClass) {
var addedClass;
if (currentClass === "fu-icon1") {
addedClass = "glyphicon glyphicon-ok-sign";
$(".table tr").addClass("success");
} else if (currentClass === "fu-icon0") {
addedClass = "glyphicon glyphicon-remove-sign";
$(".table tr").addClass("danger");
}
return addedClass;
});

enter image description here

最佳答案

$('.fu-icon1').each(function() {
$(this).parent('tr').addClass('success');
$(this).addClass("glyphicon glyphicon-ok-sign");
});
});

$('.fu-icon0').each(function() {
$(this).parent('tr').addClass('danger');
$(this).addClass("glyphicon glyphicon-remove-sign");
});
});

关于javascript - 使用 Jquery 设置条件时如何定位特定行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34202319/

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