0
Element tables = doc.select("table")
Elements myTds = tables.select("td:eq(0)");

......

thetext=td.text();
thehref=td.getElementsByTag("a[href]");

我正在从 HTML 页面读取表格。我想阅读

<td>
<a href="student-profiles/andy.html">Andy</a>
</td>

我想阅读安迪和学生档案。正文正在打印安迪。我怎样才能得到href?我尝试了几件事,但不能。

4

2 回答 2

0

我能够做到这一点:

元素 myTds = tables.select("td:eq(0)"); 比 tds.attr(href);

于 2012-08-26T18:04:50.853 回答
0

//thehref=td.getElementsByTag("a");

function simpleURL(){
        var anchors = document.getElementsByTagName('a');
        if(anchors != null & anchors.length > 0){
                thehref= anchors[1].href;  

        }       
    }
于 2012-08-26T07:16:06.350 回答