4
我有這樣的html結構。我想獲得第二個沒有class或id的表。我如何獲得iframe
的第二個表格?遍歷iframe使用jsoup
<iframe>
<html>
<body>
<table><table>
<table>
<tr><td></td></tr>
<tr><td></td></tr>
</table>
</body>
</html>
</iframe>
我想這樣
Elements iframe = doc.select("iframe");
for(Element e : iframe) {
System.out.println(e.child(0));
}
誰能幫助我?
這是你想要解析的真正的'html'嗎?因爲它看起來不正確。 – Darwind 2013-04-26 10:24:58