static public void main( String[] args ) {
Document playerpage =
Jsoup.connect("http://en.wikipedia.org/wiki/Diego_Forl%C3%A1n").get();
Elements table = playerpage.getElementsByTag("table").select("table.infobox");
Elements ind = table.select("tr:contains(Club information)");
如您所见,我成功地选择了表格中包含文本的行: Club information
。
我要在下次搜索时使用该号码, 如何返回此元素的行索引?