隐藏刚刚使用 If 语句测试的类
帮助,我试图隐藏刚刚使用 if 语句测试的类。 只是不知道如何让它发挥作用。这是我到目前为止得到的代码。它确实找到/获取我喜欢的类(使用简单的警报消息进行测试)。
if($('div[class^="cn-list-row"]').attr('class').indexOf('sporttherapie') != -1) {
//make all the div's with a class true to above statment hide (.hide())
}
有人知道如何做对吗?
Help, I'm trying to hide the class(es) just tested with the if statement.
Just cant figure out how to make it work. This is the code i've got so far. It does find/get the classes I like(tested with simple alert message).
if($('div[class^="cn-list-row"]').attr('class').indexOf('sporttherapie') != -1) {
//make all the div's with a class true to above statment hide (.hide())
}
Does somebody knows how to get it right?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
$("div[class^='cn-list-row').filter(".sporttherapie").hide()
$("div[class^='cn-list-row').filter(".sporttherapie").hide()
假设
sporttherapie
不是一个确切的类名,您可以使用filter
方法 (DOCS) 来减少元素集并隐藏
那些:Assuming
sporttherapie
isn't an exact class name, you can use thefilter
method (DOCS) to reduce the element set and justhide
those: