Javascript createElement no end tag

别等时光非礼了梦想. 提交于 2019-12-01 06:43:38
Akinos

You might want to take a look at this article

SVG Scripting with JavaScript Part 1: Simple Circle

The method you're looking for is:

var circle = document.createElementNS("http://www.w3.org/2000/svg", "circle");

Edit: Credit where credit is due

Stackoverflow: Creating SVG graphics using javascript?

try using document.createElementNS:

var circle = document.createElementNS("http://www.w3.org/2000/svg","circle");

Try to use :

document.createElementNS('circle')
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!