Jump to content
  • 0

Селектор класса, не имеющего вложенных тегов бывает?


borus
 Share

Question

8 answers to this question

Recommended Posts

  • 0

навскидку: отсутствие потомков при помощи js детектировать. и им же навесить необходимый атрибут, который послужит селектором))

а вообще не это ли ищите:

http://htmlbook.ru/css/empty

Link to comment
Share on other sites

  • 0

а вообще не это ли ищите:

http://htmlbook.ru/css/empty

Нет.

К примеру есть код, который кроме текста ничего не содержит, никаких других элементов:

<div class="product-price"> 70,00 руб </div>

А бывает что-то вроде такого


<div class="product-price">
<span class="price-crossed"></span>
<div class="PricesalesPrice" style="display : block;">Цена:
<span class="PricesalesPrice">200,00 руб</span>
</div>
<div class="Pricewholesale_price" style="display : block;">Опт:<span class="Pricewholesale_price">125,00 руб</span>
</div>
<div class="PricediscountAmount" style="display : none;">Скидка: <span class="PricediscountAmount"></span>
</div>
</div>

и надо завязаться только за первый пример div'a с классом product-price

Edited by borus
Link to comment
Share on other sites

  • 0

Как вариант, можно воспользоваться JS:


$('.product-price').each(function(){
if($(this).html() != $(this).text()) $(this).addClass('notags');
});

А дальше применяй стили к .notags. Не факт, что сработает, я не тестил, но все же попытка не пытка))

Link to comment
Share on other sites

  • 0

Можно сделать конечно с попыдвыпедвертом, но это не решение, разве что совсем на крайняк.

Всем своим пустым дивам можно добавлять какой-то класс типа .empty, и так их потом отлавливать.

Но это воистину не круто.

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