Raphael JS为paper.set对象设置ID

时间:2012-08-01 05:56:21

标签: raphael

我想为SET对象提供ID。不知道怎么做

1 个答案:

答案 0 :(得分:2)

据我所知,只有一种方式...... 延伸Raphael.st

Raphael.st.setID = function(id){
this.id = id;
}

var yourset = paper.set(); 
    yourset.setID(id); //give the id you want

then try -> yourset.id;

我希望它对你有用....