天天看點

jsoup擷取script标簽中的内容

Element body = Jsoup.parse(html);
Element script = body.select("script").first();
if (script != null) {
	String str = script.data();
}