Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在移动设备上出现响应式菜单问题。
手机版的菜单在电脑上点击时下拉,但在手机上测试时,菜单不下拉。
任何帮助将不胜感激!
链接:http: //4grain.bmdigitalgroup.com/
安东尼
这与您gumby-trigger不确定导致问题的确切原因有关,但我找到了解决方案。
gumby-trigger
由于您只是尝试将active类添加到ul这将起作用
active
ul
<script> $(document).ready(function() { $('.toggle').click(function() { $('ul.nine').toggleClass('active'); }) }); </script>
建议:我会在按钮和实际菜单中添加 ID。这样你就可以在 jQuery 中使用 ID 而不是类来调用它们。