gpt4 book ai didi

javascript - 将 SVG 元素添加到 html 文件?

转载 作者:行者123 更新时间:2023-11-29 18:36:59 27 4
gpt4 key购买 nike

我想将一些 SVG 元素添加到 html 文件中。我发现链接说这不受支持,文档类型必须是 xhtml。

但我正在使用一些带有 html 的 javascript 库,这些库允许我在其中使用 SVG(Raphael、SVG Web 等)。

那么有没有一种方法可以将脚本添加到 html 文件中,从而可以在运行时动态地将 SVG 元素添加到文档中?

谢谢

最佳答案

var svgnode = document.createElementNS('http://www.w3.org/2000/svg','svg');
var circle = document.createElementNS('http://www.w3.org/2000/svg','circle');
circle.setAttribute("cx", "100");
circle.setAttribute("cy", "100");
circle.setAttribute("r", "40");
circle.setAttribute("fill", "blue");

svgnode.appendChild(circle);
mydiv.appendChild(svgnode);

关于javascript - 将 SVG 元素添加到 html 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2125646/

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