我正在将标签动态添加到表中并按以下方式进行编译
$compile(tdArray[i])($scope)
并且我将以下代码附加到html中的单元格
anchorElement.setAttribute("ng-controller", "modalController");
anchorElement.setAttribute("ng-click", "open()");
anchorElement.innerText = " ...ReadMore";
但是ng-click仅触发一次而不是两次。有人可以解释为什么吗?是因为范围改变了?