如何使用javascript添加svg? [英] How to add svg using javascript?

查看:49
本文介绍了如何使用javascript添加svg?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用此代码将 svg 插入到 div 标签中.

I am using this code to insert svg into a div tag.

var container = document.getElementById("div_id");
var svg = document.createElement("svg");
svg.setAttribute("width",container.clientWidth);
svg.setAttribute("height",container.clientHeight);    
container.appendChild(svg);

在浏览器中使用开发者工具检查时,svg 存在于 div 中.但是当我将鼠标悬停在开发人员工具中的 svg 上时,它显示svg 0*0",即即使宽度和高度属性设置为 500 和 400,我也无法在页面中查看它.我试图在 svg 中插入一行,这在 svg 中也可以看到,但在浏览器中不可见.需要帮忙.

On checking using the developer tools in the browser, svg is present inside the div. But when I hover over the svg in the developer tools, it is showing "svg 0*0" i.e eventhough the width and height attributes are set as 500 and 400 I cannot view it in the page. I tried to insert a line into the svg, which again can be seen inside svg, but not visible in the browser. Need help.

推荐答案

使用

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

创建您的 SVG.也可以将其用于元素.

to create your SVG. Use it for elements as well.

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

作品就像普通元素一样.

The work just like regular elements.

这篇关于如何使用javascript添加svg?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆