我想将 id 设置为 Raphael 集,因为我想在事件点击后显示它。
这是我的一套:
var divResult = document.getElementById('printResult');
var space2Draw = Raphael(divResult, 1600, 900);
var st = space2Draw.set();
st.push(
space2Draw.circle(newXCoordinates, newYCoordinates, 20).click((function (valore) {
return function () {
window.open("index-point.html?id=" + (valore) + "&type=" + type + "&description=" + description + "&name=" + name);
}
}(valore))).mouseover(function () {
this.attr({ 'cursor': 'pointer' });
this.attr({ 'opacity': '.50' });
}).mouseout(function () {
this.attr({ 'opacity': '1' });
})
);
在我的页面中,我有一个按钮:
function show(){
var element = space2Draw.getById(-1);
element.show();
}
}
无法以这种方式设置 id:set.id = -1?我怎样才能设置一个 id 然后我找到集合?
在此先感谢您的帮助。