Authored by 毕凯

搜索页面筛选框 增加分类取消选中功能

@@ -39,7 +39,7 @@ @@ -39,7 +39,7 @@
39 <span class="title">性别:</span> 39 <span class="title">性别:</span>
40 40
41 <div class="attr-content clearfix"> 41 <div class="attr-content clearfix">
42 - {{#each channel}} 42 + {{#each gender}}
43 <a class="attr {{#if checked}}checked{{/if}}" href="{{href}}"> 43 <a class="attr {{#if checked}}checked{{/if}}" href="{{href}}">
44 {{name}} 44 {{name}}
45 </a> 45 </a>
@@ -96,6 +96,15 @@ $('.sort-pre').on('click', 'li', function() { @@ -96,6 +96,15 @@ $('.sort-pre').on('click', 'li', function() {
96 index = $this.index(), 96 index = $this.index(),
97 id = $this.data('id'); 97 id = $this.data('id');
98 98
  99 + if ($this.hasClass('active')) {
  100 +
  101 + // 选中时,再次点击取消选中
  102 + $this.removeClass('active');
  103 + $sortSub.children(':eq(' + index + ')').addClass('hide');
  104 + $sizeWrap.addClass('hide');
  105 + return;
  106 + }
  107 +
99 $this.siblings('.active').removeClass('active'); 108 $this.siblings('.active').removeClass('active');
100 $this.addClass('active'); 109 $this.addClass('active');
101 110