我正在努力在数据地图中绘制国家之间的弧线。我已将国家坐标添加到每个国家/地区路径,但我现在想通过选择标签名称来检索该信息(因为这就是它们的标记方式)
<body>
<div id="map" class="container" style="position: relative; width: 1000px; height:600px;">
<svg style="overflow: hidden;" height="605" class="datamap" data-width="1005" width="1005"><g class="datamaps-subunits" id="">
<path y="428.1202655740264" x="434.98315269028086" style="fill: rgb(255, 255, 0); stroke-width: 1; stroke-opacity: 1; stroke: rgb(253, 253, 253);" class="datamaps-subunit FRA" d="M540.4628749226546...377.01608532029195Z
</path></svg>
</div>
</body>
我想选择这个特定元素并检索 x 和 y 值。但document.getElementByTagName("datamaps-subunit FRA").length
回报0
。我在这里做错了什么?