如果找到一个带有类的 div 然后更改 body 类
嗨,我对 jquery 很陌生,并且停留在基本的事情上。我想要的是:
如果有一个带有类inner-header的div,那么在body上应用类link-bg,如果没有inner-header div,则删除该类。我正在尝试使用以下代码来做到这一点。
if ( $('body').find(.inner-header) ) {
$("body").addClass("link-bg");
} else {
$("body").removeClass("link-bg");
}
Hi I am very new to jquery and stuck in a basic thing. what i want is:
If there is a div with class inner-header then apply the class link-bg on body if there is no inner-header div the remove the class. i am trying to do this with following code.
if ( $('body').find(.inner-header) ) {
$("body").addClass("link-bg");
} else {
$("body").removeClass("link-bg");
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
Try this:
试试这个:
try this: