我正在和我的同事讨论,他强调使用
$('#createModal').modal('show');
而不是上面的插件。
我正在通过以下代码创建模态:
$scope.createModal = $modal({
scope: $scope,
template: '/reports/static/partials/schedule-modal.html',
show: true
})
当我以这种方式创建模式时,它显然不继承引导程序的样式表,例如背景颜色不同。
您能否请教一下,为什么您更喜欢使用mgcrea.ngStrap来创建模态而不是使用:
$('#createModal').modal('show');
我无法向我的同事解释这一点,我想知道,以便我可以解释团队。