如果父 li 有子 ul,则将类添加到父 li - 使用 jquery
我希望能够将一个类添加到我的最顶层 li,但前提是它具有 sub ul 或 ul ul。每个li都包含一个链接,是的,它是一个下拉导航菜单。
我当前的 jquery:
$(function() {
$('ul.sub-menu').hide();
$('.sub-menu ul').hide();
$('#menu-navigation li').hover(function(){
$(this).children('ul').slideDown("fast");
},
function(){
$(this).children('ul').hide();
});
$('#menu-navigation ul li').hover(function(){
$(this).children('ul').slideDown("fast");
},
function(){
$(this).children('ul').hide();
});
});
这只显示/隐藏每个元素。
我希望最顶层的 li 有一个类,这样当我将鼠标悬停在子元素上时,该类仍然存在。我将如何做到这一点?
预先感谢您的任何帮助。
I'd like to be able to add a class to my top most li, but only if it has a sub ul or ul ul. Each li contains a link and yes, it's a drop down navigation menu.
My current jquery:
$(function() {
$('ul.sub-menu').hide();
$('.sub-menu ul').hide();
$('#menu-navigation li').hover(function(){
$(this).children('ul').slideDown("fast");
},
function(){
$(this).children('ul').hide();
});
$('#menu-navigation ul li').hover(function(){
$(this).children('ul').slideDown("fast");
},
function(){
$(this).children('ul').hide();
});
});
This only shows / hides each element.
I'd like the top-most li to have a class, so that when I hover over the child elements, that class remains in place. How would I do this?
Thanks in advance for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个
Try this