标签:有关 regex dex 执行 htm 表达式 html on() win
$("#tableId").find("td").length;
$("#exampleTable tr").each(function(rowIndex) { // 遍历表格行
var colLength = $(this).find("td").length; // 获取当前行的列数
}
$("#tableId").find("td").length;
$("#exampleTable").on(‘post-body.bs.table‘, function() {
var txtVal = $("#searchName").val();
var reg = new RegExp(txtVal, ‘ig‘); // ‘ig‘忽略大小写,在全文中查找指定字符串
if (txtVal != ‘‘ && txtVal != null) {
$("#exampleTable tr").each(function(rowIndex) { // 遍历表格行
var colLength = $(this).find("td").length; // 获取当前行的列数
for (var i = 1; i < colLength; i++) {
var txtObj = $(this).find("td").eq(i).text();
var objColor = ‘<span style="color:red">‘ + txtVal + ‘</span>‘;
var newObj = txtObj.replace(reg, objColor);
$(this).find("td").eq(i).html(newObj);
}
});
}
});
bootstrap-table表格通过关键字查询并且条件筛选,表格中出现的关键字都标红
标签:有关 regex dex 执行 htm 表达式 html on() win
原文地址:https://www.cnblogs.com/aisiyu/p/13191791.html