0

我试图在 Elements 中找到一个元素的索引,这是它在 commentNumber 序列中的位置,它之前在以下 for 循环中出现。

    Elements comments = qaDoc.select("li[data-comment-id]");

    commentNumber = 0;

    for (Element comment : comments) {
        commentNumber = commentNumber + 1;

        reply = comment.select("a[class$=d2-in-reply-to]").first();
        replyToId = reply.attr("data-action-target");

        //How do you find the index of the following element??? Thanks
        comments.select("li[data-comment-id=" + replyToId + "]").first();
    }

如果有类似的方法

comments.select("li[data-comment-id=" + replyToId + "]").first().indexOf();

我需要导入什么才能访问它。我现在只编程了一个星期的 java 和 jsoup,还有很多东西要学。谢谢

4

1 回答 1

0

使用下面的作业,我能够解决问题。

replyToNumber = 1 + comments.indexOf(comments.select("li[data-comment-id=" + replyToId + "]").first());
于 2013-07-24T18:40:27.190 回答