列表搜索插件:jQuery Searcher Plugin
jQuery Searcher Plugin这个插件能够为任何列表类型的数据提供包含输入框的搜索功能。
下表包含了可以传给插件的所有可能的选项。
Name | Type | Description |
---|---|---|
itemSelector | string | jQuery selector for the data item element (e.g. tr, li ).Default: "tbody > tr" |
textSelector | string | jQuery selector for the element which contains the text within the item element. If not specified the data item element is used instead. Default: "td" |
inputSelector | string | jQuery selector for the input element which is used to filter the data. Default: "" |
caseSensitive | bool | Determines whether the search should be case sensitive or not. Default: false |
toggle | function | this function is called for each data item element when the text in the input changes. it is called with the data item element and a boolean value indicating whether the item contains the text or not. Default: function(item, containsText) { $(item).toggle(containsText); } |
本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!