我正在对一些报告表进行主题化,并且无权访问模板。
到目前为止,我有这段代码,它最终将“my-class”添加到报告表中的每个 TR 元素中。但是,我只想将类添加到找到文本的表格行 TR 中。我想我需要更多的代码来做到这一点。以下是我迄今为止尝试过的一些事情:
if ($('#report-area table tr:contains("Name")', this).length > 0) {
$("#reportArea table tr", this).addClass("my-class");
}
我也试过:
if ($('#report-area table tr:contains("Name")', this).length > 0) {
$(this).addClass("my-class");
}
...但这也不起作用。