最佳答案
我目前正在使用 JavaScript 中的 svg
元素。
我的问题是,我有一个 svg
元素,其中有多个 svg:g
元素。在我的 svg:g
元素中,还有其他各种 svg 元素。
<svg>
<g class="my-class">
<g class "c1">
<text style="font-size: 9" x="0" y="-4"> john </text>
<text style="font-size: 9" x="70" y="-4"> 13 </text>
</g>
<g class="c2">
<text style="font-size: 9" x="0" y="-4"> john </text>
<text style="font-size: 9" x="70" y="-4"> 13 </text>
</g>
<g class="c3">
<text style="font-size: 9" x="0" y="-4"> john </text>
<text style="font-size: 9" x="70" y="-4"> 13 </text>
</g>
</g>
</svg>
g
将动态附加到
G“ my _ class”
现在我想设置我的 svg
宽度等于宽度的 g.my_class
宽度。
var svgWidth = $('.my-class').width()
alert(svgWidth);
但它给了我零。我怎么可能在我的浏览器上看到它在一个黄色的工具提示框
当我选择这一行时。
有人能好心地指导我吗? 我这样做对吗? 或者我怎样才能做到这一点? 谢谢