gpt4 book ai didi

javascript - 更改文本 svg JavaScript

转载 作者:行者123 更新时间:2023-12-02 16:52:58 27 4
gpt4 key购买 nike

如何在 JavaScript 中使用“txtcircle”更改文本分配的 ID?我的对象如下:

<svg  width="100" height="100" id="svgcircle" > 
<rect id="circle1" x="5" y="25" width="50" height="50" stroke="#0E0E0E" style="fill:red; stroke-width:1" />
<text id =txtcircle x="5" y="35" font-family="Verdana" font-size="11" fill="white" > Rect1 </text>
</svg>

我还想通过使用 JavaScript 编写所需的文本来更改文本 (ID = 'Rect1')

最佳答案

你可以这样做

var elem = document.getElementById('txtcercle');
elem['innerText' in elem ? "innerText" : "textContent"] = "some value";

关于javascript - 更改文本 svg JavaScript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26426521/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com