欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Angularjs中的ui-bootstrap的使用教程

程序员文章站 2022-03-20 22:57:52
1.新建uibootstrap.html页面,引入依赖的js和css类库 2.新建uibootstrap.js文件,定义一个uimodule 模块,引入依赖的模块...

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",//dialog的id,与html建立的template的id一致
controller:"modalcontroller"//指定dialog的controller
});
 };
})

5.定义dialog弹出框的 modalcontroller

这个controller中声明弹出框中确认和取消按钮的单击事件的处理函数

controller("modalcontroller",function($scope, $modalinstance){
//定义dialog中的确认按钮的点击事件的处理函数
$scope.ok = function(){
$modalinstance.close();//
};
//定义dialog中的取消按钮的点击事件的处理函数
$scope.cancel = function(){
$modalinstance.dismiss('cancel');
 }
});

5.在uibootstrap.html文件中添加一个按钮,用于打开窗口

<div ng-controller="uicontroller">
 <button ng-click="opendialog()" class="btn btn-default">打开弹出窗口</button>
</div>

6.效果

Angularjs中的ui-bootstrap的使用教程

补充:

Angularjs中的ui-bootstrap的使用教程

以上所述是小编给大家介绍的angularjs中的ui-bootstrap的使用教程,希望对大家有所帮助!