angularjs之ui-bootstrap的使用

前端之家收集整理的这篇文章主要介绍了angularjs之ui-bootstrap的使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

转自:http://blog.csdn.net/zsz459520690/article/details/50158045

1.新建uiBootstrap.html页面,引入依赖的js和css类库


2.新建uiBootstrap.js文件,定义一个uiModule
模块,引入依赖的模块
/**
* Created by zhong on 2015/9/7.
*/
var uiModule = angular.module("uiModule",["ui.bootstrap","ui.router"]);

});
3.定义dialog弹出窗口的模板

4.定义一个
UiController
,并声明一个用于打开dialog弹出框的函数openDialog
uiModule.controller("UiController",function($scope,$modal){
//打开dialog函数
$scope.openDialog = function(){
$modal.open({
templateUrl:"myModalContent.html",//dialogid,与html建立的template一致
controller"ModalController"指定controller
});
};
})

5.定义dialog弹出框的
ModalController
这个controller中声明弹出框中确认和取消按钮的单击事件的处理函数
"ModalController",31); background-color:inherit">$modalInstance){
定义中的确认按钮的点击事件的处理函数
ok $modalInstance.close();//
};
中的取消按钮的点击事件的处理函数
cancel dismiss('cancel');
}
});
5.在uiBootstrap.html文件添加一个按钮,用于打开窗口
<div ng-controller="UiController">
    <button ng-click="openDialog()" class="btn btn-default">打开弹出窗口</button>
div>
6.效果
补充:


原文链接:https://www.f2er.com/angularjs/148087.html

猜你在找的Angularjs相关文章