我有单独的json包含SVG路径ID。有没有办法使用路径ID获取SVG路径'd'属性?或者有没有办法只使用路径ID填充SVG路径?
答案 0 :(得分:1)
您可以通过调用document.getElementById来获取路径元素,然后您可以从中获取/设置属性...
var d = document.getElementById("<path id>").getAttribute("d");
document.getElementById("<path id>").setAttribute("fill", "red");