Jump to content
  • 0

jQuery - each Вопрос


cupWebCode
 Share

Question

Здравствуйте, кто знает, прошу помочь.
Есть $('.bottom ul li') список. У первого пунката класс active. Нужно перебрать циклом список. У первого пункта удалить класс, а второму добавить. Потом у второго удалить, а третьему добавить. Как вызывать функцию через setInterval я разберусь. Как быть с класами, ничё не могу придумать. Кто знает подскажите пожалуйста.
 

Вот код который есть сейчас:

$('.bottom ul li').each(function() {
    $(this).removeClass('active');
    $(this).addClass('active');
});
Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

разобрался:

$('.bottom ul li').each(function(n, element) {
    //console.log(arguments);
    //console.log($('.bottom ul li').eq(n+1));
    if ($(this).prop('class') == 'active') {
           $(this).removeClass('active');
    }
    $('.bottom ul li').eq(n+1).addClass('active');
    
});
Link to comment
Share on other sites

  • 0

Не знаю, может так немножко покрасивее будет:

<ul>  <li>item-1</li>  <li>item-2</li>  <li>item-3</li>  <li>item-4</li>  <li>item-5</li></ul>
var $li = $('ul').children('li'), // выбираем все элементы LI$li.each(function(index, el) {  $(this)    .addClass('active') // добавляем к текущему класс "active"    .prev('li') // а у предыдущего элемента …      .removeClass('active'); // удаляем класс "active"});
Edited by mrnobody
Link to comment
Share on other sites

  • 0

 

Не знаю, может так немножко покрасивее будет:

<ul>  <li>item-1</li>  <li>item-2</li>  <li>item-3</li>  <li>item-4</li>  <li>item-5</li></ul>
var $li = $('ul').children('li'), // выбираем все элементы LI$li.each(function(index, el) {  $(this)    .addClass('active') // добавляем к текущему класс "active"    .prev('li') // а у предыдущего элемента …      .removeClass('active'); // удаляем класс "active"});

В процессе столкнулся с рядом проблем.

Первое: не совсем понял как сделать итерацию через определённое время. может кто знает?

потом решил поёти другим путём:

function hideLi() {
    var numb = '';
    $('.bottom ul li').eq(numb).removeClass('active');
    if($('.bottom ul li').eq(numb).attr('class') == '') {
        numb += 1;
    }
    $('.bottom ul li').eq(numb).addClass('active');
    console.log(numb);       
}
setInterval(hideLi, 1000);
 
я каждый раз вызываю функцию hideLi с интервалом в 1секунду. Проблема в чём... изначально numb = '' <= в нём 0. после действий к нему добавляется 1. Да всё работает, но когда через секунду опять вызывается функция в numb находится 0. и так по кругу... вобщем идея не реализована. Нужно чтобы с каждым вызовом функции var numb = ''; переприсваивалось значение. 
 
Как можно это сделать? Спасибо...
 
p.s. в скрипте только разбераюсь
Link to comment
Share on other sites

  • 0

Вобщем, долго ломая голову над этой задачей, у меня всётаки получилось её решить. Код очень простой:

function hideLi() {
    $('.bottom ul li.active').removeClass('active').next().addClass('active'); 
    if ($('.bottom ul li:last-child').hasClass('active')) {
        setTimeout("$('.bottom ul li:first-child').addClass('active')", 1000);
    }
}
setInterval(hideLi, 1000);
 
Большое спасибо mrnobody, натолкнул на мысль)
Link to comment
Share on other sites

  • 0

у меня вариант попроще (фидлы не все смотрел, может быть я повторяю чей-то, хз):

<!doctype html><html><head><meta charset="utf-8" /><title>123</title><style>.active{color:Crimson;}</style><script src="http://code.jquery.com/jquery-latest.min.js"></script><script>var to;function gogo(n){$('.bottom ul li').removeClass('active');n = n < $('.bottom ul li').length ? n : 0;$('.bottom ul li').eq(n).addClass('active');to=setTimeout('gogo('+(n+1)+')',1000);}$(document).ready(function(){gogo(0);});</script></head><body><div class="bottom"><ul>  <li>item-1</li>  <li>item-2</li>  <li>item-3</li>  <li>item-4</li>  <li>item-5</li></ul></div></body></html>
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