-1
的On鍵按下我正在尋找通過一個表格來顯示值,但如何使這項工作不考慮區分大小寫的如何搜索irespective案例sentive
$(document).ready(function()
{
$('#filter').on('input', function()
{
var val = $.trim(this.value).toLowerCase();
var tr = $('#tagstable tbody td');
el = tr.find('label:contains(' + val+ ')').closest('td')
tr.not(el).fadeOut();
el.fadeIn();
})
});
http://jsfiddle.net/cod7ceho/216/
使用'filter'返回符合您的標準的元素E.G:http://jsfiddle.net/cod7ceho/217/ – Moob