AngularJS中使用ngModal模态框实例

前端之家收集整理的这篇文章主要介绍了AngularJS中使用ngModal模态框实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在AngularJS中使用模态框需要引用的文件

  1. angular.js 1.5.5
  2. ui.bootstrap-tpls.js 0.11.2
  3. bootstrap.css 3.3.7

需要注意版本要一致,高版本的不支持这种方法,会出错

将需要弹出的模态框的内容写在 script 标签中,指明属性,放在页面

在App和Controller中注入模态框

标签中定义的id controller : 'modalCtrl',//modal对应的Controller resolve : { data : function() {//data作为modal的controller传入的参数 return data;//用于传递数据 } } }) } }

//模态框对应的Controller
app.controller('modalCtrl',$modalInstance,data) {
$scope.data= data;

//在这里处理要进行的操作
$scope.ok = function() {
$modalInstance.close();
};
$scope.cancel = function() {
$modalInstance.dismiss('cancel');
}
});

添加事件触发显示模态框

html

ng-model模态框 nofollow" rel="stylesheet">

<script src="https://cdn.bootcss.com/angular.js/1.5.5/angular.min.js"&gt;
<script src="https://cdn.bootcss.com/angular-ui-bootstrap/0.11.2/ui-bootstrap-tpls.min.js"&gt;

<script type="text/javascript">
var app = angular.module('app',['ui.bootstrap']);
app.controller('modalController',$modal) {
var data = "通过modal传递的数据";
$scope.openModal = function() {
var modalInstance = $modal.open({
templateUrl : 'modal.html',//script标签中定义的id
controller : 'modalCtrl',//modal对应的Controller
resolve : {
data : function() {//data作为modal的controller传入的参数
return data;//用于传递数据
}
}
})
}
})
//模态框对应的Controller
app.controller('modalCtrl',data) {
$scope.data= data;

 //在这里处理要进行的操作
 $scope.ok = function() {
   $modalInstance.close();
 };
 $scope.cancel = function() {
   $modalInstance.dismiss('cancel');
 }

});

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/js/38974.html

猜你在找的JavaScript相关文章