jsoup解析html
用jsoup解析html 怎么拿到alt的值 doc.getElementById("imgTagWrapperId").attr("alt"); 我已经试过不行
回答:
doc.select("img").attr("alt");
回答:
doc.getElementById("imgTagWrapperId").getElementsByTagName("img")[0].getAttribute("alt")
以上是 jsoup解析html 的全部内容, 来源链接: utcz.com/p/174767.html