用法:
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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。