我有一张卡片视图。 想要简单地做出最佳搜索选择。 在后台使用mysql和php。 需要找到一种在卡之间进行搜索的最佳方法。 该卡的标题当前带有上下字母,因此我的搜索无法正常工作,应该在此处查看我的代码,希望您能提出一些感谢的内容。
我的代码:
$('.card').removeClass('d-none');
var filter = $(this).val(); // get the value of the input, which we filter on
$('.row').find('.card .card-body h4:not(:contains("'+filter+'"))').parent().parent().addClass('d-none');
我期望的最终搜索结果基本上只是能够在卡标题(例如“卡名”)中的卡标题之间进行搜索 因此,即使用户键入“卡名”也可以找到该卡,换句话说,即使是大写或小写字母,他也可以找到它。