我想知道使用 Raphael.js 绘制元素的方法是什么。我尝试使用 getById 但它根本不起作用。请帮助我克服这个问题。
//当用户点击圆圈时,我正在获取圆圈 ID 并想要获取 //矩形,它也具有与圆圈相同的 ID,但具有不同的前缀。
function addCircleClick(obj)
{
obj.click(function(event)
{
alert(paper+" getRect ID 1"+this.id);.
var getRect;
try
{
var getRect = paper.getById(this.id);////This below line(paper.getById(this.id)) is not working,even Circle object i am not able to get
}
catch(e)
{
alert(e);//Issue here
}
alert("getRect ID 2 "+getRect);
obj.attr({"stroke":"red"});
});
}