当我尝试使用AngularStrap在Angularjs应用程序中显示模态窗口时,我总是收到错误说"无法设置属性' zIndex'未定义"。 我的代码如下:
var storageModal = $modal({
scope : $scope,
templateUrl : 'sections/modals/storage.modal.tpl.html',
show : false });
$scope.showStorageModal = function() {
console.log('Modal Show');
storageModal.$promise.then(storageModal.show);
};
有没有人可以帮助我?感谢您的帮助...