0

!我需要在 android 中提取这个元素 - 我如何使用 Jsoup 来做到这一点......请帮助我尝试过使用 这个

<table cellspacing="0" cellpadding="0" style="position: absolute; left: 0px; top: 0px; right: 0px; bottom: 0px;"><tbody><tr><td align="left" style="vertical-align: top;"><div class="gwt-Tree" style="position: relative;" role="tree"><div tabindex="0" style="font-size: 0px; position: absolute; outline: 0px none; z-index: -1; left: 39px; top: 28px; width: 66px; height: 20px;" hidefocus="true" role="treeitem" aria-activedescendant="gwt-uid-9"> … </div><div style="padding: 0px; margin-left: 0px;"><table style="white-space: nowrap;"><tbody><tr><td style="vertical-align: middle;"> … </td><td style="vertical-align: middle;">**<div id="gwt-uid-8" class="gwt-TreeItem" style="display: inline;" role="treeitem">

站点 - 我需要提取此元素

  </div>**</td></tr></tbody></table><div style="white-space: nowrap;"> … </div></div></div></td></tr></tbody></table>

Element Stats = document.select("div > td").first();
Elements nodeBlogStats = Stats.select("div[id = gwt-uid-8]");
4

1 回答 1

0

尝试

String Stats= document.select("div #gwt-uid-8").attr("style");
于 2013-08-21T22:38:11.870 回答