我創建了一個表,但不知何故現在能夠過濾該行。它給我錯誤,因爲不能讀取屬性拆分。這裏是我的fiddle文件的鏈接。任何幫助都會很棒。提前致謝。表jQuery過濾器
$("#crudtable_filter").keyup(function() {
//split the current value of searchInput
var data = this.value.split(" ");
//create a jquery object of the rows
var jo = $("#crudtable").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"
});
你的'this.value.split(「」);'獲取undefine值解決它並繼續。 – RRajani