使用jQuery在数组中两个ID具有相同值时显示错误消息

时间:2019-02-11 13:49:26

标签: javascript jquery html5

enter image description here

我有一个像这样的数组,它具有相同的提示,我想比较这个数组并在出现重复ID时显示错误消息

1 个答案:

答案 0 :(得分:1)

应该执行以下操作:

array.forEach(function(e,i){
  for (var j = i+1; j < array.length; j++) {
     if (e.Tid == array[j].Tid) {
        // ids match, do something
     }
   }
 });