Authored by 毕凯

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

... ... @@ -39,7 +39,7 @@
<span class="title">性别:</span>
<div class="attr-content clearfix">
{{#each channel}}
{{#each gender}}
<a class="attr {{#if checked}}checked{{/if}}" href="{{href}}">
{{name}}
</a>
... ...
... ... @@ -96,6 +96,15 @@ $('.sort-pre').on('click', 'li', function() {
index = $this.index(),
id = $this.data('id');
if ($this.hasClass('active')) {
// 选中时,再次点击取消选中
$this.removeClass('active');
$sortSub.children(':eq(' + index + ')').addClass('hide');
$sizeWrap.addClass('hide');
return;
}
$this.siblings('.active').removeClass('active');
$this.addClass('active');
... ...