html 使用CSS选择器进行全文搜索以过滤结果

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 使用CSS选择器进行全文搜索以过滤结果相关的知识,希望对你有一定的参考价值。

<!-- FROM: http://redotheweb.com/2013/05/15/client-side-full-text-search-in-css.html -->
<input type="text" placeholder="search" id="search">
<style id="search_style"></style>
<script type="text/javascript">
var searchStyle = document.getElementById('search_style');
document.getElementById('search').addEventListener('input', function() {
  if (!this.value) {
    searchStyle.innerHTML = "";
    return;
  }
  // look ma, no indexOf!
  searchStyle.innerHTML = ".searchable:not([data-index*=\"" + this.value.toLowerCase() + "\"]) { display: none; }";
  // beware of css injections!
});
</script>

以上是关于html 使用CSS选择器进行全文搜索以过滤结果的主要内容,如果未能解决你的问题,请参考以下文章

使用 hibernate 按 userId 字段过滤全文搜索结果

全文搜索和角色权限

Solr 建议 - 使用 DocumentDictionaryFactory 进行上下文过滤返回整个字段

深入研究查询Elasticsearch,过滤查询和全文搜索

MySQL数据检索+查询+全文本搜索

全文本搜索