• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

使用javascript添加svg?

用户头像
it1352
帮助1

问题说明

我正在使用此代码将 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.

正确答案

#1

使用

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.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfkfec
系列文章
更多 icon
同类精品
更多 icon
继续加载