我有一个 svg 绘图的字符串。例如我的字符串 var 有这个内容:
<svg width="612" height="394" xmlns="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<rect id="svg_1" height="152" width="265" y="44" x="91" stroke-width="5" stroke="#000000" fill="#FF0000"/>
</g>
<g>
<title>Layer 2</title>
<rect id="svg_2" height="125" width="151" y="157" x="399" stroke-width="5" stroke="#000000" fill="#FF0000"/>
</g>
</svg>
有没有简单的方法来获取信息?例如,获得矩形高度的最佳方法是什么?如何从第 2 层中仅选择矩形的高度?感谢你的回答