java如何取到如下html中的div内的字符串“需要取的内容”
<divid="apDiv3"><tableheight="182"width="100%"cellspacing="3"border="0"><tbody><tr><t...
<div id="apDiv3">
<table height="182" width="100%" cellspacing="3" border="0">
<tbody><tr>
<td height="147" valign="middle" align="center"><a href="details/V8EJJIJ0P.html"><img height="140" width="211" src="../images/group/pic01.jpg" /></a></td>
</tr>
<tr>
<td align="left"><a style=" color:#213964"><strong>需要取的内容</strong></a></td>
</tr>
</tbody></table>
</div>
已用Jsoup解决 展开
<table height="182" width="100%" cellspacing="3" border="0">
<tbody><tr>
<td height="147" valign="middle" align="center"><a href="details/V8EJJIJ0P.html"><img height="140" width="211" src="../images/group/pic01.jpg" /></a></td>
</tr>
<tr>
<td align="left"><a style=" color:#213964"><strong>需要取的内容</strong></a></td>
</tr>
</tbody></table>
</div>
已用Jsoup解决 展开
4个回答
展开全部
用js可以很简单的得到啊。
<body>
<div id="apDiv3">
<table height="182" width="100%" cellspacing="3" border="0"> <tbody>
<tr>
<td height="147" valign="middle" align="center"><a href="details/V8EJJIJ0P.html">
<img height="140" width="211" src="../images/group/pic01.jpg" /></a></td>
</tr> <tr> <td align="left"><a style=" color:#213964">
<strong id="ss">需要取的内容</strong></a></td> </tr> </tbody>
</table>
</div>
</body>
<script type="text/javascript">
var str=document.getElementById("ss").innerHTML;
alert(str);
</script>
<body>
<div id="apDiv3">
<table height="182" width="100%" cellspacing="3" border="0"> <tbody>
<tr>
<td height="147" valign="middle" align="center"><a href="details/V8EJJIJ0P.html">
<img height="140" width="211" src="../images/group/pic01.jpg" /></a></td>
</tr> <tr> <td align="left"><a style=" color:#213964">
<strong id="ss">需要取的内容</strong></a></td> </tr> </tbody>
</table>
</div>
</body>
<script type="text/javascript">
var str=document.getElementById("ss").innerHTML;
alert(str);
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
先确定 <a style=" color:#213964"><strong> 是不是唯一的,如果是,就好找
Strign。indexOf(Sring)
再 cut 到 </strong>前面
Strign。indexOf(Sring)
再 cut 到 </strong>前面
更多追问追答
追问
不是唯一的。。还有什么方法
追答
div 开始
找表格
找第几行、第几格
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询