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>

アンディと学生のプロフィールを読みたいです。thetextはAndyを印刷しています。どうすればhrefを取得できますか?私はいくつかのことを試しましたが、できませんでした。

4

2 に答える 2

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 に答える
0

私はこれを行うことができました:

要素 myTds = tables.select("td:eq(0)"); tds.attr(href); よりも

于 2012-08-26T18:04:50.853 に答える