使用jsoup遍历iframe

我有这样的html结构。我想获取没有类或ID的第二张表。我如何从中获得第二张桌子iframe

<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));

}

谁能帮我?

回答:

您想遍历iframe元素吗?最好从iframe

Element iframe = doc.select("iframe").first();

String iframeSrc = iframe.attr("src");

if(iframeSrc != null) {

iframeContentDoc = Jsoup.connect(iframeSrc).get();

}

您只能这样做。

以上是 使用jsoup遍历iframe 的全部内容, 来源链接: utcz.com/qa/419319.html

回到顶部