gpt4 book ai didi

javascript - 在 HTML 表中查找重复记录

转载 作者:行者123 更新时间:2023-11-29 22:28:28 25 4
gpt4 key购买 nike

我正在使用 DataTable 插件并且对添加重复行有疑问。

当用户向 (HTML) 表添加记录时,我想检查该记录是否已存在于表中(在客户端)。

例如:

       Column A
Row 1 ABC

现在如果用户尝试添加“ABC”,我想抛出错误。

任何人都可以提供如何使用 jQuery 或 Datatables 实现此目的的指针吗?

最佳答案

function findInTable(str, tableID){
$('#' + tableID + ' tr').each(function(){
$(this).children('td').each(function(){
if ( $(this).html() == str ){
alert('found');
return false;
}
});
});
}

findInTable('ABC', 'mytable'); // <table id="mytable">...</table>

关于javascript - 在 HTML 表中查找重复记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8160521/

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