我有
<div id = top1>
<div id topsub1>
<ul class="student">
<li>
<a href="/thomas">Tom</a>
</li>
</div>
<div id topsub2>
<ul class="student">
<li>
<a href="/thomas1">Tom1</a>
</li>
</div>
</div>
我想获取 href 和 text 所以我做了 Elements xx= select (div div ul li)
当我为 y 做 foreach xx 时,如果我这样做了
string1= y.text(); //这是打印 Tom String2= y.attr("href") //这总是空的。我无法获得 /thomas?我也试过 y.attr("a[href]"))
还有什么是:doc.select(".studentnames > a");?这是否意味着 ID=studentnames 上的所有“a”都正确???