通过 id 查找 html 元素
在我的项目中,我想要这样的例子
<html>
<body>
<table >
<tr>
<td>first column<br></td>
<td>second column</td>
<td>third column</td>
</tr>
</table>
</body>
</html>
我想要标签之间的html源代码<tr></tr>
。输出:
<td>first column</td>
<td>second column</td>
<td>third column </td>
我已成功找到标记的值,但在我的项目中我想要 html 源代码。我正在使用 htmlcleaner 库来寻找价值。htmlcleaner 中是否有可用的库或方法?