1. 程式人生 > >angularjs之ui-bootstrap的使用

angularjs之ui-bootstrap的使用

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建立的templateid一致
controller:"ModalController"//指定dialogcontroller
});
};
})

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.效果


補充: