Showing
1 changed file
with
4 additions
and
0 deletions
@@ -62,6 +62,10 @@ $sideNav.on('touchstart', 'li', function(e) { | @@ -62,6 +62,10 @@ $sideNav.on('touchstart', 'li', function(e) { | ||
62 | } | 62 | } |
63 | }); | 63 | }); |
64 | 64 | ||
65 | +$sideNav.on('touchmove', function(e) { | ||
66 | + e.stopPropagation(); | ||
67 | +}); | ||
68 | + | ||
65 | //返回一级导航,收起二级导航 | 69 | //返回一级导航,收起二级导航 |
66 | $subNav.each(function() { | 70 | $subNav.each(function() { |
67 | $(this).find('li').eq(0).on('touchstart', function() { | 71 | $(this).find('li').eq(0).on('touchstart', function() { |
-
Please register or login to post a comment