使用JavaScript创建SVG标签

18 浏览
0 Comments

使用JavaScript创建SVG标签

我如何使用JavaScript创建一个SVG元素?我尝试了以下代码:

var svg = document.createElement('SVG');
    svg.setAttribute('style', 'border: 1px solid black');
    svg.setAttribute('width', '600');
    svg.setAttribute('height', '250');
    svg.setAttribute('version', '1.1');
    svg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
document.body.appendChild(svg);

然而,它创建的SVG元素宽度和高度都为零。

0