1

我想知道使用 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"});  
    });
}       
4

1 回答 1

2

我认为您的问题是您正在尝试使用示例中所示的纸张。希望这可以帮助你。

var paper = Raphael("field1", 240, 400, actions);

var attrs = {
        fill: "#FFF"    
    };

function actions() {
    var that = this;  
    var circle = that.circle(50,50,10);
    circle.attr(attrs);

    circle.click(function(event) {
        console.log(this.id); //elements id
        console.log(that.getById(this.id)); //clicked element
        console.log(paper.getById(this.id)); //doesn't work
    });
};

编辑:重新阅读您的问题,并认为我可能误解了它。无论如何,我不太确定您获得具有不同前缀的相同 ID 是什么意思。每个元素都有唯一的编号 id。

于 2012-05-21T17:14:47.313 回答