jQuery SlideToggle 菜单将折叠,如果
在事件触发后并且仅在事件触发后单击除链接和暴露的 div 正文之外的任何内容
$(function() {
$('#engageNetwork').bind('click', function() {
$('.topNavSlide').stop(true,true).slideToggle(1000, 'easeOutExpo');
$('a').click(function() {
$('.topNavSlide').stop(true,true).slideToggle(500, 'easeOutExpo');
});
});
});
anything except the link and the body of the exposed div are clicked after the event is fired and only after the event is fired
$(function() {
$('#engageNetwork').bind('click', function() {
$('.topNavSlide').stop(true,true).slideToggle(1000, 'easeOutExpo');
$('a').click(function() {
$('.topNavSlide').stop(true,true).slideToggle(500, 'easeOutExpo');
});
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 :not 选择器来绑定将折叠菜单的文档单击处理程序的其余部分。
选择器和绑定类似于:(
第二个带有星号的 #engageNetwork 引用已到位,以确保 #engageNetwork 下的任何元素都不会与此事件处理程序绑定。)
You can use the :not selector in order to bind the rest of the document click handler that will collapse the menu.
The selector and the binding is something like:
(the second reference to #engageNetwork with the asterisk is in place to make sure any elements under the #engageNetwork won't be binded with this event handler.)