Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 jQuery quickSearch 在单个页面上搜索多个表(每个表一个)。问题是某些数据可以在某些表字段中动态更改。我想要快速搜索来处理它,但它没有。有什么帮助吗?
刚找到解决办法
在快速搜索插件中添加“重新缓存”选项,并在快速搜索插件文件的末尾执行此操作:
if( options.recache != null && typeof options.recache == 'function' ) { //alert('binding'); $(this).bind('recacheQs',e.cache); } 现在只要数据发生变化就这样做$(your table).trigger('recacheQs');
if( options.recache != null && typeof options.recache == 'function' ) { //alert('binding'); $(this).bind('recacheQs',e.cache); }
$(your table).trigger('recacheQs');