Posted in Javascript onMay 14, 2014
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?"有重复":"无重复" );
jquery如何判断表格同一列不同行input数据是否重复
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@