通过javascript动态设置文本SVG元素

Setting text SVG element dynamically via javascript

本文关键字:SVG 元素 置文本 javascript 动态 通过      更新时间:2023-09-26

我通过JavaScript创建SVG元素,它运行良好,但当我创建一个文本SVG元素并定义其内容时,浏览器不会呈现该值,尽管当我用firebug检查它时,该值在代码中。

代码为:

var svg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
svg.setAttribute('xlink','http://www.w3.org/1999/xlink');
svg.setAttribute('width','187');
svg.setAttribute('height','234');
var rect = document.createElementNS('http://www.w3.org/2000/svg', 'rect');
rect.setAttribute('width','187');
rect.setAttribute('height','234');
rect.setAttribute('fill','#fff');
rect.setAttribute('stroke','#000');
rect.setAttribute('stroke-width','2');
rect.setAttribute('rx','7');
var text = document.createElementNS('ttp://www.w3.org/2000/svg', 'text');
text.setAttribute('x', '10');
text.setAttribute('y', '20');
text.setAttribute('fill', '#000');
text.textContent = '2';
svg.appendChild(rect);
svg.appendChild(text); 
var wp = document.getElementById('wrapper'); 
wp.appendChild(svg);

这是jsfiddle链接。如果你检查SVG,你会在那里看到文本元素的值,但浏览器不会呈现它

感谢

您的命名空间中缺少一个"h"

var text = document.createElementNS('ttp://www.w3.org/2000/svg', 'text');

应该是

var text = document.createElementNS('http://www.w3.org/2000/svg', 'text');
    function createText() {
  var newText = document.createElementNS(svgNS,"text");
  newText.setAttributeNS(null,"x",20);      
  newText.setAttributeNS(null,"y",100);   
  var textNode = document.createTextNode("milind morey");
  newText.appendChild(textNode);
  document.getElementById("firstGroup").appendChild(newText);
}

 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="300" height="300">    
       <g id="firstGroup">
    <text x="20" y="45" onclick="createText();" font-size=+13px">Click on this text to create a new text.</text>
  </g>
       </svg>

我压缩了你的代码一点,现在它可以了

let txt='2';
wrapper.innerHTML=`
  <svg xlink="http://www.w3.org/1999/xlink" width="187" height="234">
    <rect width="187" height="234" fill="#fff" stroke="#000" 
          stroke-width="2" rx="7"></rect>
    <text x="10" y="20" fill="#000">${txt}</text>
  </svg>
`;
<div id=wrapper></div>

您犯了一个非常简单的错误:

var text=document.createElementNS('ttp://www.w3.org/2000/svg','text');^^^与相比

var text=document.createElementNS('http://www.w3.org/2000/svg','text');^^^^敲击键盘!