如何将文本插入raphaeljs生成的节点中? 我想使用onClick调用函数u在节点上插入或编辑文本。 但我不知道该怎么做。 请帮帮我。
答案 0 :(得分:0)
使用此 DEMO 。
正在使用插入文本的示例。
connections = [],
shapes = [ r.ellipse(190, 100, 30, 20),
r.rect(290, 80, 60, 40, 10),
r.rect(290, 180, 60, 40, 2),
r.ellipse(450, 100, 20, 20)
],
texts = [ r.text(190, 100, "One"),
r.text(320, 100, "Two"),
r.text(320, 200, "Three"),
r.text(450, 100, "Four")
];
这正是您所需要的。