説明が必要ですUncaught ReferenceError: cir is not definedというエラーが表示されます エラーの理由は特定できますが、解決できません。誰でも私を助けることができます
function onMouseUp(event) {i++;
circles.push(circle);
var cir = new Group();
cir.addChild(circle);
createElem('circle', i);
}
要素を作成する関数で、
function createElem(id, i){
var exist = document.getElementById('markList');
c1 = document.createElement('div');
var text = document.createTextNode(id+" "+i);
c1.appendChild(text);
c1.setAttribute('id', id+'_'+i);
c1.onclick = function (){
cir.removeChildren(i, i+1);
};
exist.appendChild(c1);
}