gpt4 book ai didi

javascript - 我试图显示圆的属性值,但它不起作用

转载 作者:行者123 更新时间:2023-12-03 01:31:49 25 4
gpt4 key购买 nike

我试图显示圆的属性值,但它不起作用。

我的脚本

var x = document.getElementById("circle").getAttribute("cx");
document.write(x);

我的 HTML

<svg width="1000" height="500">
<circle id="circle" cx="50" cy="50" r="50">
</svg>

最佳答案

circle 元素应该是自动闭合的。

var x = document.getElementById("circle").getAttribute("cx");
document.write(x);
<svg width="1000" height="500">
<circle id="circle" cx="50" cy="50" r="50" />
</svg>

由于您的 SVG 宽度和高度,您需要在上面的代码片段窗口中向下滚动。

关于javascript - 我试图显示圆的属性值,但它不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51260201/

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