Jquery:点击slideUp问题
我有一个 JQuery 导航,单击父
时会使用 JQuery 向下滑动。第二次单击时,它将向上滑动导航。我遇到的问题是,我的客户希望如果他单击屏幕上的其他位置,它也可以向后滑动,即仅单击空白区域就会折叠导航。有什么想法吗?
这是 Jquery:
$('#menu-flag-menu > li > a').click(function(e) {e.preventDefault();});
$("#menu-flag-menu li a").click(function(){
// close all opened sub menus
$("ul", $(this).parent().siblings()).stop(true,true).slideUp();
var ul = $(this).next("ul");
ul.stop(true,true).slideToggle('fast');
});
I have a JQuery navigation which on clicking a parent <li>
slides down using JQuery. On a second click it will slide the navigation up. The problem I have is that my clients wants it also to slide back up if he clicks somewhere else on screen, i.e just clicking on blank white space would collapse the nav.
Any ideas?
Here is the Jquery:
$('#menu-flag-menu > li > a').click(function(e) {e.preventDefault();});
$("#menu-flag-menu li a").click(function(){
// close all opened sub menus
$("ul", $(this).parent().siblings()).stop(true,true).slideUp();
var ul = $(this).next("ul");
ul.stop(true,true).slideToggle('fast');
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该有效:
This should work:
我的建议是尝试使用 .mouseenter 事件打开菜单,使用 mouseleave 事件关闭菜单。
My advice would be to try using the .mouseenter event to open the menu and the mouseleave event to close the menu.