gpt4 book ai didi

jquery - (jQuery) addClass 到整行

转载 作者:行者123 更新时间:2023-12-01 07:43:12 27 4
gpt4 key购买 nike

我正在尝试将类添加到文本为“null”或评级小于或等于 5 的整个

$( document ).ready(function() {
$("thead tr td:nth-child(3)").each(function(){
if($(this).text() == 'null')
$(this).text('No rating found').addClass("table-danger");
else if ( $(this).text() <= '5' ) {
//if value is smaller or equal to 5 don't works
$(this).text().addClass("table-danger");
}
});
});

FiddleJS: https://jsfiddle.net/e0svzss9/6/

最佳答案

这行是错误的

 $(this).text().addClass("table-danger");

应该是

 $(this).addClass("table-danger");

编辑:

使用Parents标签导航到tr

$(this).parents('tr')

Fiddle

关于jquery - (jQuery) addClass 到整行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44197441/

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