在HTML页面中,我想用jsoup选择javascript的值?

时间:2015-04-26 12:01:48

标签: javascript html regex jsoup

   <html>
         <script type="text/javascript">
            var map = null;
            jQuery(function($) {
        L.marker([50.065407, 19.945104], {title: 'Cat'})
                            .bindPopup('<h3>Cat</h3><p><strong>color</strong>black<br><strong>Dog</strong>white</p>')
                            .addTo(map);
            </script>
        </html>

我需要从<h3><strong>获取值 script = doc.select(&#34; script&#34;);
但如何获得:&#34;猫色黑&#34;
&#34;狗白&#34; ?
p = Pattern.compile("^[a-z]+");
m = p.matcher(doc.html());
return String.valueOf(m);
它返回给我java.util.regex.Matcher@4167d5f8

1 个答案:

答案 0 :(得分:0)

这样做:

--config