Jump to content
  • 0

Как убрать элемент, но не его содержание


T@NKIST
 Share

Question

Есть кусочек странички


<div class="wrap">
<div class="one">
<div class="in"></div>
<div class="in2"></div>
</div>
<div class="two">
<div class="in"></div>
<div class="in2"></div>
</div>
<div class="three">
<div class="in"></div>
<div class="in2"></div>
</div>
</div>

через jquery я хочу скрыть элементы one, two и three


$(".wrap div").css("display", "none");

но вместе с этими элементами скрываются также in и in2, а этого не нужно.

Как скрыть только .wrap div и не давать in и in2 такого же оформления?

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

У вас .in и .in2 внутри тех div которые хотите скрыть, так, что они в любом случае скроются.

Если вопрос в том как применить d:n только к .one .two .three


$(".wrap>div").css("display", "none");

Или добавьте общий класс им, и обращайтесь по общему классу

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy