jQuery按首字母过滤帖子-按字母顺序

时间:2018-09-03 12:51:26

标签: javascript jquery html woocommerce elementor

我有一个来自WooCommerce的产品列表,作为自定义帖子(使用页面构建器Elementor)被拉到这里:http://staging.morningsidepharm.com/products/generic-medicines/

我已经使用插件尝试添加字母过滤器,但这对我不起作用(我认为是因为我将产品显示为帖子),所以我认为我会使用jquery来构建一个。

我找到了以下代码:

HTML

<button class="active btn" id="all">Show All</button>
<button class="btn" id="a">Show A</button>
<button class="btn" id="b">Show B</button>
<button class="btn" id="c">Show C</button>
<button class="btn" id="d">Show D</button>

<div class="spacer"></div>

<div id="parent">
  <div class="box a b">A &amp; B</div>
  <div class="box a">A</div>
  <div class="box b">B</div>
  <div class="box c">C</div>
  <div class="box d">D</div>
</div>

CSS

* {
  box-sizing: border-box;
}
body {
  padding: 10px;
  background: #ecf0f1;
  font-family: helvetica, sans-serif;
  font-weight: 200;
}
.btn {
  border: none;
  background: linear-gradient(to bottom, #3498db, #2980b9);
  border-radius: 3px;
  font-family: Arial;
  color: #ffffff;
  padding: 5px 10px 5px 10px;
  text-decoration: none;
  margin: 5px;
}

.active {
  background: linear-gradient(to bottom, #3cb0fd, #3498db);
  text-decoration: none;
}
.box {
  background-image: linear-gradient(to bottom, #3498db, #2980b9);
  padding: 10px;
  height: 100px;
  width: calc(25% - 10px);
  float: left;
  margin: 5px;
  text-align: center;
  border-radius: 3px;
  color: #fff;
}
.spacer {
  clear: both;
  height: 20px;
}

JS

var $btns = $('.btn').click(function() {
  if (this.id == 'all') {
    $('#parent > div').fadeIn(450);
  } else {
    var $el = $('.' + this.id).fadeIn(450);
    $('#parent > div').not($el).hide();
  }
  $btns.removeClass('active');
  $(this).addClass('active');
})

在这里可以看到哪些动作:https://codepen.io/terf/pen/vGeqC

这似乎可行,因为每个div都有a,b,c,d等类。

但是,就我而言,我的每个容器div都具有相同的类,但是具有唯一的h3标题,例如:

<div class="product"><h3>Acarbose</h3></div>
<div class="product"><h3>Bicalutamide</h3></div>
<div class="product"><h3>Capecitabine</h3></div>
<div class="product"><h3>Dapsone</h3></div>

因此,我认为,要使此工作有效,我需要jQuery读取每个产品div中h3的第一个字母,然后仅在按下字母过滤器时才显示相应的产品。

或者将产品名称作为类添加到div中?

我知道这只是一个起点,可能会有一种更简单的方法来实现这一目标,因此,我们将不胜感激。

1 个答案:

答案 0 :(得分:3)

您将从点击按钮的sh.addShard( "localhost:27018") { "ok" : 0, "errmsg" : "no such command: 'addShard'", "code" : 59, "codeName" : "CommandNotFound" } 中获得第一个要搜索的字母。因此,您只能通过正则表达式idfilter()个元素,以确保它们以该字母开头,如下所示:

.product
var $boxes = $('#parent > .box');

var $btns = $('.btn').click(function() {
  var id = this.id;
  if (id == 'all') {
    $boxes.fadeIn(450);
  } else {
    $boxes.fadeOut(450).filter(function() {
      var re = new RegExp('^' + id, 'i');
      return re.test($(this).text().trim());
    }).stop(true).fadeIn(450);
  }
  $btns.removeClass('active');
  $(this).addClass('active');
})
* {
  box-sizing: border-box;
}

body {
  padding: 10px;
  background: #ecf0f1;
  font-family: helvetica, sans-serif;
  font-weight: 200;
}

.btn {
  border: none;
  background: linear-gradient(to bottom, #3498db, #2980b9);
  border-radius: 3px;
  font-family: Arial;
  color: #ffffff;
  padding: 5px 10px 5px 10px;
  text-decoration: none;
  margin: 5px;
}

.active {
  background: linear-gradient(to bottom, #3cb0fd, #3498db);
  text-decoration: none;
}

.box {
  background-image: linear-gradient(to bottom, #3498db, #2980b9);
  padding: 10px;
  height: 100px;
  width: calc(25% - 10px);
  float: left;
  margin: 5px;
  text-align: center;
  border-radius: 3px;
  color: #fff;
}

.spacer {
  clear: both;
  height: 20px;
}