我有具有下一个结构的 html 文档
<html>
<head>...</head>
<body>
Some text
<iframe name="frame2" id="frame2">
#document
<html>
<head>...</head>
<body>
<table>
<tr>
<td>Inner Text</td>
</tr>
</table>
</body>
</html>
</iframe>
</body>
</html>
如何<td>
使用 jQuery 选择器从 iframe2 中选择标签并获取它的内部文本?我不知道如何从内部#document 构造中选择任何标签?有人可以在我身上筹码吗?