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