當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery Mobile Listview filterCallback用法及代碼示例


用法:

filterCallback
類型:Function()
默認:n/a
此選項在 1.4.0 中已棄用,並將在 1.5.0 中刪除。它現在在filterable 小部件中實現。

當搜索過濾器文本框更改時確定要隱藏哪些行的函數。該函數接受兩個參數 - 列表項的文本(或 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;
  };
});
(不推薦使用的版本:1.4.0)

相關用法


注:本文由純淨天空篩選整理自jquerymobile.com大神的英文原創作品 Listview filterCallback。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。