当前位置:Gxlcms > JavaScript > jquery如何判断表格同一列不同行input数据是否重复_jquery

jquery如何判断表格同一列不同行input数据是否重复_jquery

时间:2021-07-01 10:21:17 帮助过:32人阅读

代码如下:

function hasRepeat(objId,columnIndex){
var arr = [];
$("#"+objId+" tbody tr").each(function(){
arr.push( $("td:eq("+columnIndex+")",this).text() );
});
if( arr.length==$.unique( arr ).length ){
return false;
}else{
return true;
}
}

//调用
alert( hasRepeat(tableID,列索引)==1?"有重复":"无重复" );

人气教程排行