我有一个SVG,其中包含一个矩形内的文本。我想在某些用户交互时更改文本。
我遇到的大多数代码都是这样的:(示例代码用于添加圆圈)
var shape = document.createElementNS("http://www.w3.org/2000/svg", "circle");
shape.setAttribute("cx", 25);
shape.setAttribute("cy", 25);
shape.setAttribute("r", 20);
shape.setAttribute("fill", "green");
当我使用:
function writeSVG() {
clearSVG();
var name = document.getElementById('txtName').value;
var txtNode = '<text id="newTxt" x="300" y="300">' + name + '</text>';
$('#svgElem').append(txtNode);
$('#popUp').hide();
}
//Removes all text from SVG rectangle
function clearSVG() {
$('#controls text').remove();
}
我的SVG直接写入HTML
<div id="controls">
<svg id="svgElem" height="600" xmlns="http://www.w3.org/2000/svg" version="1.1"> Sorry, your browser does not support SVG.
<rect id="rectSVG" width="500" height="500" style="fill:#FFFFFF;stroke:black;stroke-width:2;" onclick="launchPopUp();" />
<text id="defaultTxt" x="200" y="200">Click in here!</text>
</svg>
</div>
注意:我使用的是 Safari 5.1