使用 id 方法添加类

发布于 2024-12-20 06:59:16 字数 344 浏览 1 评论 0原文

我目前有这段代码(这是 js 文件中的唯一代码)

if ($('body').hasClass('home')) { 
('#home_link').addClass('home').removeClass('test_class')};

我正在尝试将 home 类添加到 id home_link< 的 li 项目中/code> 如果 body 有一个类 home,并在此过程中删除 test_class

(似乎不起作用,所有帮助将不胜感激)

I currently have this code (this is the only code in the js file)

if ($('body').hasClass('home')) { 
('#home_link').addClass('home').removeClass('test_class')};

I'm trying to add a home class to a li item with id home_link if the body has a class home and remove test_class in the process.

(Doesn't seem to work, all help would be appreciated)

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

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

发布评论

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

评论(1

人生戏 2024-12-27 06:59:16

您似乎缺少 $

if ($('body').hasClass('home')) 
{ 
    $('#home_link').addClass('home').removeClass('test_class');
}

It looks like you're missing a $:

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