jQuery .remove()和last-child没有按预期工作

前端之家收集整理的这篇文章主要介绍了jQuery .remove()和last-child没有按预期工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个代码工作正常.新的数据正好,但当p的数量达到3时,没有任何反应.最后一项没有被删除,也没有附加新项目.

有任何想法吗?

setInterval(function() {
              $.post(
                'json.PHP',function(data){
                    $('#tweetBox').append('<p>' + data + '</p>');
                    var list = $('#tweetBox p').length;
                    if (list > 3){
                        $('#tweetBox p:last-child').remove();
                    }               
                }
            );
        },5000);

解决方法

The last item doesn’t get removed and no new items get appended.

这表示新项目会被追加,但会立即删除.您想要撤销订单:

var list = $('#tweetBox p').length;
if (list === 3){
    $('#tweetBox p:last-child').remove();
}
$('#tweetBox').append('<p>' + data + '</p>');
原文链接:https://www.f2er.com/jquery/176033.html

猜你在找的jQuery相关文章