用法:
filterCallback
類型:Function()
默認:
n/a
此選項在 1.4.0 中已棄用,並將在 1.5.0 中刪除。它現在在filterable 小部件中實現。
(不推薦使用的版本:1.4.0)
當搜索過濾器文本框更改時確定要隱藏哪些行的函數。該函數接受兩個參數 - 列表項的文本(或 data-filtertext 值,如果存在)和搜索字符串。返回 true 隱藏項目,返回 false 使其可見。
$( document ).on( "mobileinit", function() {
$.mobile.listview.prototype.options.filterCallback = function( text, searchValue ) {
// only show items that *begin* with the search string
return text.toLowerCase().substring( 0, searchValue.length ) !== searchValue;
};
});
相關用法
- JQuery Mobile Listview filterPlaceholder用法及代碼示例
- JQuery Mobile Listview filter用法及代碼示例
- JQuery Mobile Listview filterTheme用法及代碼示例
- JQuery Mobile Listview filterReveal用法及代碼示例
- JQuery Mobile Listview refresh用法及代碼示例
- JQuery Mobile Listview icon用法及代碼示例
- JQuery Mobile Listview classes用法及代碼示例
- JQuery Mobile Listview countTheme用法及代碼示例
- JQuery Mobile Listview theme用法及代碼示例
- JQuery Mobile Listview inset用法及代碼示例
- JQuery Mobile Listview dividerTheme用法及代碼示例
- JQuery Mobile Listview create( event, ui )用法及代碼示例
- JQuery Mobile Listview defaults用法及代碼示例
- JQuery Mobile Listview autodividersSelector用法及代碼示例
- JQuery Mobile Listview splitTheme用法及代碼示例
- JQuery Mobile Listview initSelector用法及代碼示例
- JQuery Mobile Listview splitIcon用法及代碼示例
- JQuery Mobile Listview hideDividers用法及代碼示例
- JQuery Mobile Listview disabled用法及代碼示例
- JQuery Mobile Loader html用法及代碼示例
- JQuery Mobile Loader hide用法及代碼示例
- JQuery Mobile Loader theme用法及代碼示例
- JQuery Mobile Loader text用法及代碼示例
- JQuery Mobile Loader defaults用法及代碼示例
- JQuery Mobile Loader classes用法及代碼示例
注:本文由純淨天空篩選整理自jquerymobile.com大神的英文原創作品 Listview filterCallback。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。