0

我的 html 代码中有一个给定的 p 元素列表。在页面加载时,我尝试<p>按给定的时间间隔(1 秒)对每个元素的内容的修改进行排队。

给定html:

<p>I want to change first!</p>
<p>I want too!</p>
<p>Me 3rd !</p>
<p>Hey, don't forget me!</p>

的CSS:

p { padding: 2px 5px 0px 10px; }
.p { color: #999; }
.green { color:green; border-bottom: 1px solid #888; background: #EEE; }

既然我想链接修改,那么 JS 应该是什么。字面意思:第一个p句要先修改CSS/HTML,1秒后第2行替换,1秒后第3行,4秒后第4行,以此类推。

$("p").ready(function(){
    setInterval(function () {
        $('p').text('aaaahhhhh.... happy!')
    }, 1000);
  });

那是失败(小提琴)

我做错了什么?我应该使用 for 循环 each() 而不是 selector + setInterval 吗?请转发关键字,以便我可以挖掘相关文档。小提琴欣赏~

4

4 回答 4

2

试试这个

$(document).ready(function(){
    var st=null;
    var i=0;
    st=setInterval(function () {
        $('p').eq(i).text('aaaahhhhh.... happy!'); 
        if(i==$('p').length-1)// one less because i initialised by 0.
            clearTimeout(st);
        i++
    }, 1000);
});

在此处查看现场演示http://jsfiddle.net/gT3Ue/14/

于 2013-02-08T11:52:24.863 回答
2
(function next($set, i) {
  setTimeout(function () {
    $set.eq(i).text('aaaahhhhh.... happy!');
    if (i < $set.length - 1) {
      next($set, i + 1); 
    }  
  }, 1000);
//    /\
//    ||------ the delay
}($('p'), 0));
//  /\    /\
//  ||    ||-- the starting index
//  ||----- -- your set of elements

演示:http: //jsbin.com/otevif/1/

于 2013-02-08T13:01:41.267 回答
1

您的时间间隔正在使用 append 而不是 text 来查看效果。document.ready不使用$("p").ready

现场演示

$(document).ready(function(){
    setInterval(function () {
        $('p').append('aaaahhhhh.... happy!')
    }, 1000);
  });

现场演示

  i = 0;
$(document).ready(function () {
    div1 = $('#div1');
    parry = $("p");
    setInterval(function () {
        div1.append(parry.eq(i++).text() + '<br />')
        if (i > 3) i = 0;
    }, 400);
});
于 2013-02-08T11:35:18.617 回答
1
    function modifyTargetDeferred(target) {
        target.first().text('ahhh... happy');
        if (target.length > 1) {
            setTimeout(function() {
                modifyTargetDeferred(target.not(':first'));
            }, 1000);
        }
    }

    setTimeout(function() {
        modifyTargetDeferred($('p'));
    }, 1000);
于 2013-02-08T13:47:24.717 回答