首页 > 编程 > JavaScript > 正文

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

2019-11-20 15:23:40
字体:
来源:转载
供稿:网友
复制代码 代码如下:

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?"有重复":"无重复" );
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表