我的下面的功能会搜索一个表格,目前它会搜索任何类似的内容,我希望它能完全匹配,你能帮助我吗?
由于
function searchTable(inputVal, tablename) {
var table = $(tablename);
table.find('tr:not(.header)').each(function (index, row) {
var allCells = $(row).find('td');
if (allCells.length > 0) {
var found = false;
allCells.each(function (index, td) {
var regExp = new RegExp(inputVal, 'i');
if (regExp.test($(td).text())) {
found = true;
return false;
}
});
if (found == true) $(row).show().removeClass('exclude'); else $(row).hide().addClass('exclude');
}
});
}
答案 0 :(得分:6)
您当前的正则表达式不区分大小写。完全匹配意味着区分大小写。
var regExp = new RegExp("^" + inputVal + "$", 'i'); // case insensitive
或
var regExp = new RegExp("^" + inputVal + "$"); // case sensitive