我可以在 javascript 中使用 SVG Text 标签。但它不起作用。这是我的 Javascript 代码。
O=evt.target;
Doc=O.ownerDocument;
L = Doc.createElementNS(xmlns, "text");
L.setAttribute("x", 10);
L.setAttribute("y", 10);
L.node.textContent("abcdef");
L.setAttribute("fill", "red");
O.appendChild(L);
例如 SVG 文本标签:
<text x="10" y="10" fill="red">abcdef</text>
我的 javascript 代码中有什么类型的错误。问候, 维吉