admin管理员组文章数量:1352124
I have a div
which I would like to hide along with all of its children
. I thought that a simple selector.hide()
would do the trick but it's still there.
HTML
<div class="row well">
<div class="artistAlbumInfo well col-md-6 ">
<h3><span id="artist"></span> - <span id="track"></span></h3>
<img src="" id="art" class="albumArt">
</div>
<div class="col-md-6">
<h3 id="album"></h3>
<h4>Playstate <p id="playState"></p></h4>
<h4>Position <p id="position"></p></h4>
</div>
</div>
JQuery
$(document).ready(function() {
$('.row .well').hide();
});
/
Any ideas?
I have a div
which I would like to hide along with all of its children
. I thought that a simple selector.hide()
would do the trick but it's still there.
HTML
<div class="row well">
<div class="artistAlbumInfo well col-md-6 ">
<h3><span id="artist"></span> - <span id="track"></span></h3>
<img src="" id="art" class="albumArt">
</div>
<div class="col-md-6">
<h3 id="album"></h3>
<h4>Playstate <p id="playState"></p></h4>
<h4>Position <p id="position"></p></h4>
</div>
</div>
JQuery
$(document).ready(function() {
$('.row .well').hide();
});
http://jsfiddle/375c8v2a/1/
Any ideas?
Share Improve this question edited Jun 18, 2015 at 17:44 Richard Hamilton asked Jun 18, 2015 at 17:42 Richard HamiltonRichard Hamilton 26.5k11 gold badges65 silver badges88 bronze badges 3-
You're doing it wrong, just remove the second class
.well
you only need to point for the first one$('.row').hide();
. Check out the online example on jsFiddle - jsfiddle/375c8v2a/2 – Chun Commented Jun 18, 2015 at 17:49 -
I actually have multiple
rows
and I only want to target the one with both classes. – Richard Hamilton Commented Jun 18, 2015 at 17:50 -
If
well
is a class created only for that specificrow
with the purpose of hiding that row, then you can use it as the trigger to hide it like this -$('.well').hide();
– Chun Commented Jun 18, 2015 at 17:56
4 Answers
Reset to default 6You don't need a space between classes if you want to hide only those with both classes
$('.row.well').hide();
To do either or add a ma
$('.row, .well').hide();
What you have didn't work because .row .well
means "an element with class well
inside (as a child or deeper descendant) an element with class row
. In CSS, the space is the descendant binator.
To seelct the element that has both classes, remove the space:
$(document).ready(function() {
$('.row.well').hide();
// ----^
});
That means "an element with class row
and class well
".
$('.row').hide();
please remove second class
From what I've read on the ments the .well
class was intentionally created to specify which .row
class will be hiding since you have a lot of row
classes. Then you can use it as the trigger to hide that row
, instead of doing: $('.row.well').hide();
you can just simply specify the targeted class by doing:
$('.well').hide();
Click here to see a example on jsFiddle
本文标签: javascriptjQueryHow to hide an element and its childrenStack Overflow
版权声明:本文标题:javascript - jQuery - How to hide an element and its children? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743889981a2556741.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论