gpt4 book ai didi

javascript - 如何在js中检查一个表是否有重复的行列?

转载 作者:行者123 更新时间:2023-11-30 15:56:19 24 4
gpt4 key购买 nike

我想检查一个表的行中是否有重复的列。如果一个表有,就会显示一个没有添加数据库的警告。然后我想从表中拔出重复的数据。我怎样才能做到这一点?我在等你的帮助!

这是我的表有重复的 A 类:

enter image description here

这是我的表格 html 代码。

 <table id="tblSeatInfo">
<thead>
<tr>
<td>
Class
</td>
<td>
Given Seat
</td>
<td>
Adult Buying Price
</td>
<td>
Adult Selling Price
</td>
<td>
Child Buying Price
</td>
<td>
Child Selling Price
</td>
<td>
Infant Buying Price
</td>
<td>
Infant Selling Price
</td>
</tr>
</thead>
<tbody>
<tr class="tr-notremove">
<td>
<input class="form-control" type="text" name="class" />
</td>
<td>
<input class="form-control seat" type="text" name="givenseat" />
</td>
<td>
<input class="form-control decimal" type="text" name="adultbuyingprice" />
</td>
<td>
<input class="form-control decimal" type="text" name="adultprice" />
</td>
<td>
<input class="form-control decimal" type="text" name="childbuyingprice" />
</td>
<td>
<input class="form-control decimal" type="text" name="childprice" />
</td>
<td>
<input class="form-control decimal" type="text" name="infantbuyingprice" />
</td>
<td>
<input class="form-control decimal" type="text" name="infantprice" />
</td>
<td>
<div class="btn-group">
<button type="button" class="btn btn-md btn-success btn-addnewseat">Add</button>
<button type="button" class="btn btn-md btn-warning btn-removenewseat">Remove</button>
</div>
</td>
</tr>
</tbody>
</table>

最佳答案

尝试这样的事情

$('[name="class"]').on('input',function(){
var value = $(this).val();
$('[name="class"]').not(this).each(function(){
if($(this).val() == value) {
alert('duplicate content');
}
})
});

演示:https://jsfiddle.net/r3oq636w/1/

关于javascript - 如何在js中检查一个表是否有重复的行列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38475870/

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