JavaScript를 사용하여 SVG 요소 생성
<p>JavaScript를 사용하여 SVG 요소를 만드는 방법은 무엇입니까? 다음 코드를 사용해 보았습니다. </p>
<pre class="brush:php;toolbar:false;">var svg = document.createElement('SVG');
svg.setAttribute('style', 'border: 1px 단색 검정색');
svg.setAttribute('너비', '600');
svg.setAttribute('높이', '250');
svg.setAttribute('버전', '1.1');
svg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');
document.body.appendChild(svg);</pre>
<p>그러나 너비와 높이가 0인 SVG 요소를 생성합니다. </p>