<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
答案 0 :(得分:0)
这样做:
--config