Jump to content
  • 0

Помогите начинающему


Fizruke
 Share

Question

5 answers to this question

Recommended Posts

  • 0

Проверяете через цикл детей у вашего div. Если больше 1, то удаляем, если меньше, то ничего не делаем.

Что-то типа такого. Набросал для примера, на скорую руку.

<div id="test" class="class-1 class-2">
<img src="1.jpg"><img src="1.jpg">
</div>
var div = document.getElementById('test');
var length = div.childNodes.length;
var count = 0; // счетчик картинок
for(var i = 0; i < length; i++){
	if(div.childNodes[i].nodeType != 1){ // проверка на теги
		continue;
	}else{
		count++;
	}
}
if(count > 1){
	div.className = 'class-1';
}

 

Edited by Art Lev
Link to comment
Share on other sites

  • 0
2 часа назад, Vlad_P сказал:

    <script>
        $(function($) {
            q=$('.class-1 img')
            if(q.length > 1)

              $('.class-1').removeClass('class-2')


        });
    </script>

Разве '.class-1 img' найдёт не все картинки внутри .class-1, коих на странице может быть несколько? И тогда $('.class-1').remove… повыносит классы у всех блоков.

Link to comment
Share on other sites

  • 0
12 минуты назад, Int сказал:

Разве '.class-1 img' найдёт не все картинки внутри .class-1, коих на странице может быть несколько? И тогда $('.class-1').remove… повыносит классы у всех блоков.

угу( не пришло в голову очевидное

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