0
我發現這個小提琴..,它工作正常,但任何人都可以知道如何去除它的大小寫敏感。謝謝新手在這裏,任何幫助表示讚賞^^如何刪除jquery搜索過濾器中的case sensitivitiy
$("#searchInput").keyup(function() {
//split the current value of searchInput
var data = this.value.split(" ");
//create a jquery object of the rows
var jo = $("#fbody").find("tr");
if (this.value == "") {
jo.show();
return;
}
//hide all the rows
jo.hide();
//Recusively filter the jquery object to get results.
jo.filter(function (i, v) {
var $t = $(this);
for (var d = 0; d < data.length; ++d) {
if ($t.is(":contains('" + data[d] + "')")) {
return true;
}
}
return false;
})
//show the rows that match.
.show();
}).focus(function() {
this.value = "";
$(this).css({
"color": "black"
});
$(this).unbind('focus');
}).css({
"color": "#C0C0C0"
});
並且是小提琴? – Pavlo
小提琴鏈接在哪裏? – Neels
不錯的小提琴 - 但哪裏? –