3

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

4

1 回答 1

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;

我希望这个对你有用 ....

于 2012-08-01T18:56:40.690 回答