0
我如何允許動態搜索不僅僅是使用Laravel 5搜索第一頁,而是全部搜索?在Laravel 5中使用分頁支持進行動態搜索
的Jquery:
var $cells = $("tbody td");
$(".searchterm").keyup(function() {
var val = $.trim(this.value).toUpperCase();
if (val === "")
$cells.parent().show();
else {
$cells.parent().hide();
$cells.filter(function() {
return -1 != $(this).text().toUpperCase().indexOf(val); }).parent().show();
}
});
PHP:
public function index()
{
$ban = DB::table("bans")->select(['id', 'userid', 'banned_by', 'date_issued'])->orderBy("date_issued", "asc")->paginate(15);
return view("bans")->with('bans', $ban);
}
Web.php路線:
Route::get('bans', '[email protected]');
是的,但它又如何顯示其他頁面的結果,如頁面2,頁面3等? –
是否要使用與其他頁面相同的方法,則需要更改 tr = $('#tbCustomer tbody tr');到tr = $(selector); –