我在我的项目中使用 Raphael 库创建 SVG。我将 id 设置为 SVG。问题是; 我没有找到通过 Id 将 SVG 对象作为拉斐尔论文的方法。当我像这样使用 jQuery 获取 SVG 时$(filterId) or $(filterId)[0]
,它返回SVGSVGElement
Object,所以我不能使用 Raphael 的函数。
Raphael("filterDiv", 1100, 1000);
$("svg:last").attr("id","filterId");
谢谢