如何更改或添加 ID 到 SVG?
我有一个使用 Raphael 2.0 创建的 SVG,如下所示:
<div class="stave">
<svg height="342" version="1.1" width="512" xmlns="http://www.w3.org/2000/svg"
style="overflow: hidden; position: relative;" viewBox="0 410 1300 80"
preserveAspectRatio="meet">
........
</svg>
</div>
我只想为 svg 标签设置一个 ID!我该怎么做? JQUERY 还是 RAPHAEL 2.0? 我看到了很多答案,但没有一个适合我。
谢谢你的帮助
I have a SVG create with Raphael 2.0 which look like this :
<div class="stave">
<svg height="342" version="1.1" width="512" xmlns="http://www.w3.org/2000/svg"
style="overflow: hidden; position: relative;" viewBox="0 410 1300 80"
preserveAspectRatio="meet">
........
</svg>
</div>
i just want to set an ID to the svg tag! How can i do it? JQUERY or RAPHAEL 2.0?
i have see many answers but none works for me.
Thank you for helping
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您的页面上只有一个 SVG 标签,并且您在使用 Raphael 创建标签后调用了它,那么这应该可行。
如果您还没有使用 Raphael 创建标签,您可以使用如下内容:
当然,还有其他属性。
That should work if you have only one SVG tag on your page and if you've called it after having created the tag using Raphael.
If you haven't created the tag using Raphael, you can just use something like this:
Along with the other attributes, of course.
通过 jQuery,您可以使用 元素选择器 和 :nth-child()。
像这样的东西: (jsFiddle)
当然,在你的情况下,选择器将是
$('svg ')
With jQuery you can use element selector and :nth-child().
Something like this: (jsFiddle)
Of course, in your case, selector would be
$('svg')