我正在尝试使用以下几行将动态html添加到我的代码中
var el = $compile('<a ng-controller=\"tableController\" ng-click=\"open\">...ReadMore</a>')($scope);
有人可以帮忙吗?
答案 0 :(得分:1)
您错过了open方法的括号,下面的代码应该可用。
var el = $compile('<a ng-controller=\"tableController\" ng click=\"open()\">...ReadMore</a>')($scope);