我正在尝试在JS中创建一个SVG元素,然后将其附加到DOM。 SVG元素引用了一个符号。我可以使用insertAdjacentHTML
方法实现此目的,但不能通过appendChild
方法实现此目的。
当使用appendChild
时,根据浏览器检查员,所有正确的东西都在DOM上,但它没有正确呈现。谁能明白为什么?
http://codepen.io/bradjohnwoods/pen/dGpqMb?editors=101
<svg display="none">
<symbol id="symbol--circle--ripple" viewBox="0 0 100 100">
<circle cx="50" cy="50" r="25" />
</symbol>
</svg>
<button id="btn">
</button>
<script>
var btn = document.getElementById('btn');
//var myString = '<svg><use xlink:href="#symbol--circle--ripple" width="100" height="100" class="btn--ripple__circle"></use></svg>';
//btn.insertAdjacentHTML('afterbegin', myString);
var svg = document.createElement('svg');
var use = document.createElement('use');
use.setAttribute("xlink:href", "#symbol--circle--ripple");
use.setAttribute("width", "100");
use.setAttribute("height", "100");
use.classList.add("btn--ripple__circle");
svg.appendChild(use);
btn.appendChild(svg);
</script>
答案 0 :(得分:4)
您无法使用createElement
创建SVG元素,必须使用createElementNS
在SVG名称空间中创建它们
var svg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
var use = document.createElementNS('http://www.w3.org/2000/svg', 'use');
insertAdjacentHTML
调用html解析器,它可以神奇地修复元素名称空间。
同样,您不能使用setAttribute在xlink命名空间中创建属性,例如xlink:href。你想要
setAttributeNS("http://www.w3.org/1999/xlink", "xlink:href", "#symbol--circle--ripple");
有
答案 1 :(得分:0)
我找到了解决方案,.createElementNS&amp;必须使用.setAttributeNS。
var svg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
var use = document.createElementNS('http://www.w3.org/2000/svg', 'use');
use.setAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href', '#symbol--circle--ripple');