我想使用 javascript onmouseup 事件创建 svg 矩形。我的问题是创建了矩形(通过萤火虫查看),但我无法查看它。谁能帮我。
function doSomething()
{
var svgns = "http://www.w3.org/2000/svg";
var rect = document.createElementNS(svgns, 'rect');
rect.setAttributeNS(null, 'x', '150');
rect.setAttributeNS(null, 'y', '150');
rect.setAttributeNS(null, 'height', '50');
rect.setAttributeNS(null, 'width', '50');
rect.setAttributeNS(null, 'fill', '#'+Math.round(0xffffff * Math.random()).toString(16));
document.getElementById('svgOne').appendChild(rect);
}