如何选择嵌入的 svg 图形中的节点?
我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法将 SVG 元素与 id 选择器匹配。您应该使用插件提供的 getElementById() 方法:
You cannot match SVG elements with id selectors. You should use the getElementById() method provided by the plugin instead: