我想像<bloquotes>
一样递归地删除两个标签之间的HTML文本
对于此示例:
<div>hfhfk
<bloquotes><bloquotes>ppppp</bloquotes>fin texte </bloquotes>
</div>
我想得到以下结果:
<div>hfhfk</div>
最佳答案
使用jQuery,您可以执行以下操作:
$("bloquotes").each(function(){
$(this).html("");
});
$("bloquotes").remove();
关于java - 使用jsoup删除两个标签之间的html文本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13648637/