请找小提琴here
问题是什么?
当用户从drowdown中选择城市时,代码将针对所有td(所有coulmn)验证所选城市名称。但我想仅针对“城市”列验证所选城市名称。
$("#search").change(function () {
var value = this.value.toLowerCase().trim();
$("table tr").each(function (index) {
if (!index) return;
$(this).find("td").each(function () {
var id = $(this).text().toLowerCase().trim();
var not_found = (id.indexOf(value) == -1);
$(this).closest('tr').toggle(!not_found);
return not_found;
});
});
});