jsoup 在html标签外套别的标签

需求:
在文章中img标签外面套

标签,并且在img标签中增加别对属性

        Document document = Jsoup.parse(content);
        document.select("img").wrap("
"); document.select("p:has(img)").tagName("i"); String doc=Jsoup.clean(document.toString(), Whitelist.basicWithImages().removeTags("i").addTags("figure").addAttributes("img", "imgscale", "data-size", "data-format"));

你可能感兴趣的:(jsoup)