使用 id 方法添加类
我目前有这段代码(这是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您似乎缺少
$
:It looks like you're missing a
$
: