html 放置在collection.liquid底部的JavaScript标记,用于处理.sort-by select和.coll-filter选择。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 放置在collection.liquid底部的JavaScript标记,用于处理.sort-by select和.coll-filter选择。相关的知识,希望对你有一定的参考价值。

<script>
  Shopify.queryParams = {};
  if (location.search.length) {
    for (var aKeyValue, i = 0, aCouples = location.search.substr(1).split('&'); i < aCouples.length; i++) {
      aKeyValue = aCouples[i].split('=');
      if (aKeyValue.length > 1) {
        Shopify.queryParams[decodeURIComponent(aKeyValue[0])] = decodeURIComponent(aKeyValue[1]);
      }
    }
  }
  var collFilters = jQuery('.coll-filter');
  collFilters.change(function() {
      var newTags = [];
      var newURL = '';
      collFilters.each(function() { 
        if (jQuery(this).val()) {
          newTags.push(jQuery(this).val());
        }
      });
      {% if collection.handle %}
      newURL = '/collections/' + '{{ collection.handle }}';
      if (newTags.length) {
        newURL += '/' + newTags.join('+');
      }
      var search = jQuery.param(Shopify.queryParams);
      if (search.length) {
        newURL += '?' + search;
      }
      location.href = newURL;    
      {% else %}
      if (newTags.length) {
        Shopify.queryParams.constraint = newTags.join('+');        
      }
      else {
        delete Shopify.queryParams.constraint;
      }
      location.search = jQuery.param(Shopify.queryParams);
      {% endif %}      
  });
  jQuery('.sort-by')
    .val('{{ collection.sort_by }}')
    .bind('change', function() {
      if (jQuery(this).val()) {
        Shopify.queryParams.sort_by = jQuery(this).val();                
      }
      else {
        delete Shopify.queryParams.sort_by;
      }
      var search = jQuery.param(Shopify.queryParams);
      if (search.length) {
        location.search = jQuery.param(Shopify.queryParams);
      }
      else {
        location.href = location.pathname;
      }
    });
</script>

以上是关于html 放置在collection.liquid底部的JavaScript标记,用于处理.sort-by select和.coll-filter选择。的主要内容,如果未能解决你的问题,请参考以下文章

html 重新排序模块以放入collection.liquid内 - 可能需要CSS爱。 http://docs.shopify.com/manual/configuration/store-cust

html 重新排序模块以放入collection.liquid内 - 可能需要CSS爱。 http://docs.shopify.com/manual/configuration/store-cust

html 重新排序模块以放入collection.liquid内 - 可能需要CSS爱。 http://docs.shopify.com/manual/configuration/store-cust

html 重新排序模块以放入collection.liquid内 - 可能需要CSS爱。 http://docs.shopify.com/manual/configuration/store-cust

Shopify:如何在集合模板上显示特定集合

Shopify:无限滚动限制为 48 种产品?