gpt4 book ai didi

javascript - jQuery 删除重复文本

转载 作者:行者123 更新时间:2023-12-03 10:17:49 24 4
gpt4 key购买 nike

如何限制这些子元素中显示的文本仅显示一个?它当前显示重复项。我需要循环遍历每一项并让它只显示一个文本条目。

 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");
}

enter image description here

最佳答案

如何编写这样的函数并正确调用它:

function ReplaceText (text){
$('td:contains("' + text + '")').text(text);
}

关于javascript - jQuery 删除重复文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29781619/

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