I am looking for an HTML parser that can replace the "small" tag with "span"'s. Document doc = Jsoup.parse(html); for (Element small: doc.select("small")) ...
確定! 回上一頁