不要使用jquery,使用angular-ui.
https://angular-ui.github.io/bootstrap/#/modal
您可以像下面一样以编程方式打开模式,并在解析中传递您的数据.这是从他们的例子直接复制和粘贴.
var modalInstance = $uibModal.open({ animation: $scope.animationsEnabled, templateUrl: 'myModalContent.html', controller: 'ModalInstanceCtrl', size: size, resolve: { items: function () { return $scope.items; } } });