goods-cate.js
993 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* 商品分类js
* @author: liuyue(yue.liu@yoho.cn)
* @date: 2015/9/7
*/
var $ = require('yoho.jquery');
//主导航样式及点击事件
$('.cate-nav').on('click', 'li', function() {
var nowIndex = $(this).index();
$(this).addClass('current').siblings().removeClass('current');
$('.cate-main').hide().eq(nowIndex).show();
});
//主体内容显示控制
$('.cate-main').eq(0).show();
//一级导航样式及点击事件
$('.cate-first').each(function() {
$(this).find('li').eq(0).addClass('current');
$(this).on('click', 'li', function() {
var nowIndex = $(this).index();
$(this).addClass('current').siblings().removeClass('current');
$(this).parents('.cate-main').find('.cate-second-section').hide().eq(nowIndex).show();
});
});
//设置二级导航高度,出现滚动条
$('.cate-second').height($(window).height() - $('.cate-second').offset().top);
//微信中隐藏头部
if (window.ws) {
$('#header').hide();
};
$('body').css({
backgroundColor: '#f8f8f8'
})