我目前有一个表,它是我数据库中结果的 while 循环。在我的表格行中,它包含一个值为 + 或 - 天数的值。我正在尝试创建一个 jQuery 脚本,它将找出 td 是否包含(“-”)或(“+”),并且我希望它将 css 样式应用于该行的第一个 td。目前它将它应用于所有行中的每个第一个 td。
$("tr td:nth-child(7):contains('+')").each(function() {
$('tr td:first-child').css('background-color', 'blue');
});