使用 HTML 中的 javascript 动态创建 SVG 元素

IT技术 javascript html svg
2021-01-17 05:36:23

我想在 HTML 页面内创建一个矩形,然后在该矩形上写一些文本。我还需要将该文本作为超链接。这就是我所做的,但它不起作用:

    <!DOCTYPE html>
<html>
<body>

<script>

    var svg   = document.documentElement;
    var svgNS = svg.namespaceURI;

    var rect = document.createElementNS(svgNS,'rect');
    rect.setAttribute('x',5);
    rect.setAttribute('y',5);
    rect.setAttribute('width',500);
    rect.setAttribute('height',500);
    rect.setAttribute('fill','#95B3D7');
    svg.appendChild(rect);
    document.body.appendChild(svg);

    var h=document.createElement('a');
    var t=document.createTextNode('Hello World');
    h.appendChild(t);
    document.body.appendChild(h);


</script>

</body>
</html>

你能帮忙吗?谢谢。

4个回答

改变

var svg   = document.documentElement;

var svg = document.createElementNS("http://www.w3.org/2000/svg", "svg");

以便您创建一个SVG元素。

要使链接成为超链接,只需添加一个href属性:

h.setAttributeNS(null, 'href', 'http://www.google.com');

示范

好的,我会。文字有效,但我想改变它的位置。我希望它显示在矩形上,例如在矩形的中间。
2021-04-02 05:36:23
请注意,该链接是一个 html 锚标记,如果您希望它在 svg 内,您需要创建一个 <svg:text> 元素(在 svg 命名空间中)和一个 <svg:a> 元素,然后附加这些到 svg。例如参见stackoverflow.com/questions/19132443/...
2021-04-10 05:36:23

为了方便 svg 编辑,您可以使用中间函数:

function getNode(n, v) {
  n = document.createElementNS("http://www.w3.org/2000/svg", n);
  for (var p in v)
    n.setAttributeNS(null, p, v[p]);
  return n
}

现在你可以写:

svg.appendChild( getNode('rect', { width:200, height:20, fill:'#ff0000' }) );

示例(使用改进的 getNode 函数允许带有破折号的属性使用驼峰命名,例如strokeWidth > stroke-width):

function getNode(n, v) {
  n = document.createElementNS("http://www.w3.org/2000/svg", n);
  for (var p in v)
    n.setAttributeNS(null, p.replace(/[A-Z]/g, function(m, p, o, s) { return "-" + m.toLowerCase(); }), v[p]);
  return n
}

var svg = getNode("svg");
document.body.appendChild(svg);

var r = getNode('rect', { x: 10, y: 10, width: 100, height: 20, fill:'#ff00ff' });
svg.appendChild(r);

var r = getNode('rect', { x: 20, y: 40, width: 100, height: 40, rx: 8, ry: 8, fill: 'pink', stroke:'purple', strokeWidth:7 });
svg.appendChild(r);

@chris 我们可以编写"stroke-width":2测试它,效果很好。省略replace之前的 v[p] 并在属性名称中使用引号(如果其中有破折号)。混合不带引号的简单属性和带引号的虚线也可以。
2021-03-15 05:36:23
请注意,如果您尝试设置属性“viewBox”,“驼峰式到破折号功能”会为您搞砸。
2021-04-03 05:36:23
你是对的,我们应该处理一些异常以使其正常运行
2021-04-05 05:36:23

将此添加到 html:

<svg id="mySVG" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"/>

试试这个功能并适应你的程序:

var svgNS = "http://www.w3.org/2000/svg";  

function createCircle()
{
    var myCircle = document.createElementNS(svgNS,"circle"); //to create a circle. for rectangle use "rectangle"
    myCircle.setAttributeNS(null,"id","mycircle");
    myCircle.setAttributeNS(null,"cx",100);
    myCircle.setAttributeNS(null,"cy",100);
    myCircle.setAttributeNS(null,"r",50);
    myCircle.setAttributeNS(null,"fill","black");
    myCircle.setAttributeNS(null,"stroke","none");

    document.getElementById("mySVG").appendChild(myCircle);
}     

function getNode(n, v) {
  n = document.createElementNS("http://www.w3.org/2000/svg", n);
  for (var p in v)
    n.setAttributeNS(null, p.replace(/[A-Z]/g, function(m, p, o, s) { return "-" + m.toLowerCase(); }), v[p]);
  return n
}

var svg = getNode("svg");
document.body.appendChild(svg);

var r = getNode('rect', { x: 10, y: 10, width: 100, height: 20, fill:'#ff00ff' });
svg.appendChild(r);

var r = getNode('rect', { x: 20, y: 40, width: 100, height: 40, rx: 8, ry: 8, fill: 'pink', stroke:'purple', strokeWidth:7 });
svg.appendChild(r);

欢迎使用堆栈溢出。没有任何解释的代码很少有帮助。Stack Overflow 是关于学习的,而不是提供片段来盲目复制和粘贴。请编辑您的问题并解释它如何回答所提出的特定问题。请参阅如何回答
2021-04-09 05:36:23