Showing
1 changed file
with
2 additions
and
1 deletions
@@ -60,7 +60,7 @@ $sideNav.on('touchmove', function(e) { | @@ -60,7 +60,7 @@ $sideNav.on('touchmove', function(e) { | ||
60 | }); | 60 | }); |
61 | 61 | ||
62 | //点击一级导航,弹出二级导航 | 62 | //点击一级导航,弹出二级导航 |
63 | -$sideNav.on('touchend', 'li', function(e) { | 63 | +$sideNav.on('touchstart', 'li', function(e) { |
64 | if ($(this).find('.sub-nav').size() > 0) { | 64 | if ($(this).find('.sub-nav').size() > 0) { |
65 | $('.sub-nav').removeClass('show'); | 65 | $('.sub-nav').removeClass('show'); |
66 | $(this).find('.sub-nav').addClass('show'); | 66 | $(this).find('.sub-nav').addClass('show'); |
@@ -87,6 +87,7 @@ $subNav.each(function() { | @@ -87,6 +87,7 @@ $subNav.each(function() { | ||
87 | // 侧边栏点击背景色变化 | 87 | // 侧边栏点击背景色变化 |
88 | function highlight($elem) { | 88 | function highlight($elem) { |
89 | $elem.find('li').on('touchstart', function() { | 89 | $elem.find('li').on('touchstart', function() { |
90 | + $elem.find('.highlight').removeClass('highlight'); | ||
90 | $(this).addClass('highlight'); | 91 | $(this).addClass('highlight'); |
91 | }).on('touchend touchcancel', function() { | 92 | }).on('touchend touchcancel', function() { |
92 | $(this).removeClass('highlight'); | 93 | $(this).removeClass('highlight'); |
-
Please register or login to post a comment