...
|
...
|
@@ -117,6 +117,10 @@ $('.logo-brand').logoBrand({ |
|
|
var nowIndex = $(this).index(),
|
|
|
sid = $(this).data('sid');
|
|
|
|
|
|
if ($(this).hasClass('current')) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
//处理current样式
|
|
|
$(this).addClass('current').siblings().removeClass('current');
|
|
|
$('.floatlayer').find('li').removeClass('current').eq(nowIndex).addClass('current');
|
...
|
...
|
@@ -135,7 +139,11 @@ $('.logo-brand').logoBrand({ |
|
|
$('.floatlayer').on('click', 'li', function() {
|
|
|
var nowIndex = $(this).index();
|
|
|
|
|
|
$('.hot-cate').find('li').trigger('click');
|
|
|
if ($(this).hasClass('current')) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
$('.hot-cate').find('li').eq(nowIndex).trigger('click');
|
|
|
|
|
|
//处理current样式
|
|
|
$(this).addClass('current').siblings().removeClass('current');
|
...
|
...
|
|