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.
在我的 Wordpress 项目中,我使用 SlickNav ( http://slicknav.com/ ) 作为主(顶部)菜单。
当用户单击(或触摸或打开)菜单以向他显示所有菜单项以及子项时,我该如何实现?
先感谢您!
好的,我认为这可能是一个答案:
<script> jQuery( document ).ready(function() { jQuery(document).on('click','.slicknav_menu', function(e){ jQuery('.slicknav_menu ul').show(); jQuery('.slicknav_arrow').hide(); }) }) </script>