如何选择嵌入的 svg 图形中的节点?

发布于 2024-12-10 02:04:37 字数 182 浏览 1 评论 0原文

我想使用 jquery svg 插件来处理预先创建的 svg 图像的节点。使用这个插件可以创建和编辑节点,但我无法处理现有的节点。选择器找不到 svg 图像中定义的节点。

我必须通过它的 id 选择它,例如:

$("#svg_image>#node_rectangle_1")

I want to work with the nodes of a pre-created svg image with the jquery svg plugin. With this plugin it is possible to create and edit the nodes but i can't handle the existing ones. the selectors doesn't find the nodes, which are defined in the svg image.

f.e. i must select it via its id, like:

$("#svg_image>#node_rectangle_1")

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回忆追雨的时光 2024-12-17 02:04:37

您无法将 SVG 元素与 id 选择器匹配。您应该使用插件提供的 getElementById() 方法:

var svg = $("#svg_image").svg("get");
var node_rect = svg.getElementById("node_rectangle_1");

You cannot match SVG elements with id selectors. You should use the getElementById() method provided by the plugin instead:

var svg = $("#svg_image").svg("get");
var node_rect = svg.getElementById("node_rectangle_1");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文