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 ://www.air-technics.nl/warmtepomp
$('.navbar-nav > li').click(function(event) { event.preventDefault(); var target = $(this).find('>a').prop('hash'); $('html, body').animate({ scrollTop: $(target).offset().top }, 500); $("#menu-icon").trigger("click"); // click on the hamburger icon });