如何限制这些子元素中显示的文本只显示一个?它目前正在显示重复项。我需要遍历每一个并让它只显示一个文本条目。
if ($(this).children('td:nth-child(7)').text() == 'third_party_integration') {
$(this).children('td:nth-child(7)').text(' ');
$(this).children('td:nth-child(7)').text("third_party_integration");
}
答案 0 :(得分:1)
如何编写这样的函数并正确调用它:
function ReplaceText (text){
$('td:contains("' + text + '")').text(text);
}