Authored by ccbikai

侧边栏 点击

... ... @@ -68,18 +68,19 @@ mobileWrapHammer.on('tap', function(e) {
});
//点击一级导航,弹出二级导航
$sideNav.on('touchend', 'li', function () {
$sideNav.on('touchend', 'li', function (e) {
if ($(this).find('.sub-nav').size() > 0) {
$('.sub-nav').removeClass('show');
$(this).find('.sub-nav').addClass('show');
}
return false;
e.stopPropagation();
});
//返回一级导航,收起二级导航
$('.sub-nav').each(function () {
$(this).find('li').eq(0).on('touchend', function (e) {
$('.sub-nav').removeClass('show');
e.stopPropagation();
return false;
});
}).on('touchend', function() {
... ...