直接 aNode.onclick="removeLine(this)"; 并没有添加点击事件 必须使用 aNode.setAttribute("onclick","removeLine(this)"); 才能添加点击事件 这是为什么?
aNode.onclick = function(){ removeLine(this); }