我可以在浏览器中使用 SVG 渲染特殊字符吗
我正在使用 SVG 库 RaphealJS 构建图表。我想将其中一个轴标记为 F° SVG 文本元素中可以包含特殊字符吗?
我希望能够执行以下操作:
var paper = Raphael(10, 50, 320, 200);
paper.text(10, 10, 'F°')
I am building a graph using the SVG library RaphealJS. I would like to label one of the axes as F° Can special characters be included in SVG text elements?
I would like to be able to do something like the following:
var paper = Raphael(10, 50, 320, 200);
paper.text(10, 10, 'F°')
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明,您可以简单地显式添加该字符。不需要特殊的编码。在我的 Mac 上,该字符为
option+0option+shift+8,并且它在 SVG 中显示正确。Turns out you can simply add the character explicitly. There's no need to special encoding. The character is
option+0option+shift+8 on my mac, and it displays correctly in SVG.