ng-click
我用ng-bind-html
模板添加了一个锚标记,但ng-click
没有触发......我需要一个触发该功能的解决方案。
我的模板:
$scope.res =$scope.res+'<a href="javascript:void(o)" ng-click="fullfillmentCenter('+row.orderId+')" title="Send to fullfilment" class="">Send to CA Fullfilment</a>';
我的绑定 html:
<div class="ngCellText" id="div_fullfilment_{{row.getProperty(\'orderId\')}}" ng-bind-html="fullfillment(row.entity)"></div>';
ng 函数调用:
$scope.fullfillmentCenter = function(orderId){
alert(orderId);
};