如果 hasClass 则将Class 添加到父级

发布于 2024-10-03 04:34:57 字数 488 浏览 6 评论 0原文

原帖: 为什么这个简单的脚本不起作用?

if ($('#navigation > ul > li > ul > li > a').hasClass('.active')) {
    $(this).parent().parent().parent().addClass(".active");
}

编辑:

这不会隐藏 H1:

if ($('#content h1').hasClass('aktiv')) {
    $(this).hide();
}

只有这个会:

if ($('#content h1').hasClass('aktiv')) {
    $('#content h1').hide();
}

为什么我不能使用(这个)?

Original post:
Why doesn't this simple script work?

if ($('#navigation > ul > li > ul > li > a').hasClass('.active')) {
    $(this).parent().parent().parent().addClass(".active");
}

EDIT:

This won't hide the H1:

if ($('#content h1').hasClass('aktiv')) {
    $(this).hide();
}

Only this will:

if ($('#content h1').hasClass('aktiv')) {
    $('#content h1').hide();
}

Why can't I use the (this)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

怪我入戏太深 2024-10-10 04:34:57

点不是类名的一部分。它仅用于 CSS/jQuery 选择器表示法。请尝试以下操作:

if ($('#navigation a').hasClass('active')) {
    $(this).parent().addClass('active');
}

如果 $(this) 引用该锚点,则还必须将其更改为 $('#navigation a'),因为 if 条件不有 jQuery 回调范围。

The dot is not part of the class name. It's only used in CSS/jQuery selector notation. Try this instead:

if ($('#navigation a').hasClass('active')) {
    $(this).parent().addClass('active');
}

If $(this) refers to that anchor, you have to change it to $('#navigation a') as well because the if condition does not have jQuery callback scope.

兲鉂ぱ嘚淚 2024-10-10 04:34:57

或者你可以使用:

if ($('#navigation a').is(".active")) {
    $(this).parent().addClass("active");
}

Alternatively you could use:

if ($('#navigation a').is(".active")) {
    $(this).parent().addClass("active");
}
秋叶绚丽 2024-10-10 04:34:57

您可能想将条件更改为 if ($(this).hasClass('active'))

另外,hasClassaddClass 采用 < em>类名,而不是选择器。
因此,您不应包含 .

You probably want to change the condition to if ($(this).hasClass('active'))

Also, hasClass and addClass take classnames, not selectors.
Therefore, you shouldn't include a ..

饮惑 2024-10-10 04:34:57

你不能使用 $(this) 因为 jQuery 不知道它在那里。你似乎把事情过于复杂化了。您可以执行$('#content h1.aktiv').hide()。没有理由测试该类是否存在。

You can't use $(this) since jQuery doesn't know what it is there. You seem to be overcomplicating things. You can do $('#content h1.aktiv').hide(). There's no reason to test to see if the class exists.

筑梦 2024-10-10 04:34:57

不起作用的原因是 this 在 if 语句内没有特定含义,您必须返回到定义 this 的范围级别(a功能)。

例如:

$('#element1').click(function() {
    console.log($(this).attr('id')); // logs "element1"

    if ($('#element2').hasClass('class')) {
        console.log($(this).attr('id')); // still logs "element1"
    }
});

The reason that does not work is because this has no specific meaning inside of an if statement, you will have to go back to a level of scope where this is defined (a function).

For example:

$('#element1').click(function() {
    console.log($(this).attr('id')); // logs "element1"

    if ($('#element2').hasClass('class')) {
        console.log($(this).attr('id')); // still logs "element1"
    }
});
凹づ凸ル 2024-10-10 04:34:57

如果有人使用 WordPress,您可以使用以下内容:

if (jQuery('.dropdown-menu li').hasClass('active')) {
    jQuery('.current-menu-parent').addClass('current-menu-item');
}

If anyone is using WordPress, you can use something like:

if (jQuery('.dropdown-menu li').hasClass('active')) {
    jQuery('.current-menu-parent').addClass('current-menu-item');
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文