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>
我想阅读Andy和学生档案。 文字印刷安迪。 我怎样才能获得href?我尝试了几件事,但不能。
答案 0 :(得分:0)
// thehref = td.getElementsByTag( “A”);
function simpleURL(){
var anchors = document.getElementsByTagName('a');
if(anchors != null & anchors.length > 0){
thehref= anchors[1].href;
}
}
答案 1 :(得分:0)
我能够做到这一点:
元素myTds = tables.select(“td:eq(0)”); 而不是在tds.attr(href);