私は角度が初めてです。angular ui.bootstrap を使用してモーダルを作成しました。外部リンク付きのアンカー タグがあります。アンカー タグをクリックすると、新しいウィンドウが開きません。モーダルに preventDefault が適用されていますか?
$uibModalInstance = $uibModal.open({
animation: true,
template: '<div class="modal-header "><h3 class="modal-title">{{modalTitle}}<a href="javascript:void(0);" class="icon icon-page_close_grey" ng-click="cancel()"></a></h3></div>' +
'<div class="modal-body">' + data + '</div><div class="modal-footer"></div>',
size: 'lg',
backdrop:'static',
controller: modalcontroller
});
ここで私のデータには、 href="http://www.google.com" 、 target="_blank" のタグが含まれています。誰でも助けてくれますか