我在模板中使用带有ng-bind-html指令的角度引导模式,但是绑定的html中的ng-clicks不起作用。
$scope.shouldWork = function () {
// stuff
};
$scope.html1 = '<span ng-click="shouldWork()"></span>'
var modal = $modal.open({
$scope,
template: '<div ng-bind-html="html1"></div>'
});
shouldWork()
永远不会被调用。反正有没有让它发挥作用?