AngularJs 彈出模態(tài)框(model)
$modal是一個可以迅速創(chuàng)建模態(tài)窗口的服務(wù),創(chuàng)建部分頁,控制器,并關(guān)聯(lián)他們。
$modal僅有一個方法open(options)
templateUrl:模態(tài)窗口的地址
template:用于顯示html標(biāo)簽
scope:一個作用域為模態(tài)的內(nèi)容使用(事實上,$modal會創(chuàng)建一個當(dāng)前作用域的子作用域)默認為$rootScope
controller:為$modal指定的控制器,初始化$scope,該控制器可用$modalInstance注入
resolve:定義一個成員并將他傳遞給$modal指定的控制器,相當(dāng)于routes的一個reslove屬性,如果需要傳遞一個objec對象,需要使用angular.copy()
backdrop:控制背景,允許的值:true(默認),false(無背景),“static” - 背景是存在的,但點擊模態(tài)窗口之外時,模態(tài)窗口不關(guān)閉
keyboard:當(dāng)按下Esc時,模態(tài)對話框是否關(guān)閉,默認為ture
windowClass:指定一個class并被添加到模態(tài)窗口中
open方法返回一個模態(tài)實例,該實例有如下屬性
close(result):關(guān)閉模態(tài)窗口并傳遞一個結(jié)果
dismiss(reason):撤銷模態(tài)方法并傳遞一個原因
result:一個契約,當(dāng)模態(tài)窗口被關(guān)閉或撤銷時傳遞
opened:一個契約,當(dāng)模態(tài)窗口打開并且加載完內(nèi)容時傳遞的變量
另外,$modalInstance擴展了兩個方法$close(result)、$dismiss(reason),這些方法很容易關(guān)閉窗口并且不需要額外的控制器
HTML
<!DOCTYPE html> <html ng-app="ModalDemo"> <head> <title></title> <link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet"> <script src="lib/angular/angular.min.js"></script> <script src="lib/bootstrap-gh-pages/ui-bootstrap-tpls-...min.js"></script> <script src="lib/angular/in/angular-locale_zh-cn.js"></script> </head> <body> <div ng-controller="ModalDemoCtrl"> <script type="text/ng-template" id="myModalContent.html"> <div class="modal-header"> <h>I'm a modal!</h> </div> <div class="modal-body"> <ul> <li ng-repeat="item in items"> <a ng-click="selected.item = item">{{ item }}</a> </li> </ul> Selected: <b>{{ selected.item }}</b> </div> <div class="modal-footer"> <button class="btn btn-primary" ng-click="ok()">OK</button> <button class="btn btn-warning" ng-click="cancel()">Cancel</button> </div> </script> <button class="btn" ng-click="open()">Open me!</button> </div> <script> var ModalDemo = angular.module('ModalDemo', ['ui.bootstrap']); var ModalDemoCtrl = function ($scope, $modal, $log) { $scope.items = ['item', 'item', 'item']; $scope.open = function () { var modalInstance = $modal.open({ templateUrl: 'myModalContent.html', controller: ModalInstanceCtrl, resolve: { items: function () { return $scope.items; } } }); modalInstance.opened.then(function(){//模態(tài)窗口打開之后執(zhí)行的函數(shù) console.log('modal is opened'); }); modalInstance.result.then(function (result) { console.log(result); }, function (reason) { console.log(reason);//點擊空白區(qū)域,總會輸出backdrop click,點擊取消,則會暑促cancel $log.info('Modal dismissed at: ' + new Date()); }); }; }; var ModalInstanceCtrl = function ($scope, $modalInstance, items) { $scope.items = items; $scope.selected = { item: $scope.items[] }; $scope.ok = function () { $modalInstance.close($scope.selected); }; $scope.cancel = function () { $modalInstance.dismiss('cancel'); }; }; </script> </body> </html>
以上所述是小編給大家介紹的AngularJs 彈出模態(tài)框(model)的相關(guān)內(nèi)容,希望對大家有所幫助!
相關(guān)文章
Angular-UI Bootstrap組件實現(xiàn)警報功能
這篇文章主要介紹了Angular-UI Bootstrap組件實現(xiàn)警報功能,對Angular.js services的學(xué)習(xí)有所幫助,需要的朋友可以參考下2018-07-07簡介可以自動完成UI的AngularJS工具angular-smarty
這篇文章主要介紹了簡介可以自動完成UI的AngularJS工具angular-smarty,包括其中隔離作用域綁定指令符和promise的使用,需要的朋友可以參考下2015-06-06解決Angularjs異步操作后臺請求用$q.all排列先后順序問題
解決Angularjs異步操作后臺請求用$q.all排列先后順序問題,非常不錯,具有一定的參考借鑒價值,需要的朋友可以參考下2019-11-11Angular 2應(yīng)用的8個主要構(gòu)造塊有哪些
這篇文章主要為大家詳細介紹了Angular 2應(yīng)用的8個主要構(gòu)造塊,具有一定的參考價值,感興趣的小伙伴們可以參考一下2016-10-10angular報錯can't resolve all parameters&nb
這篇文章主要介紹了angular報錯can't resolve all parameters for []的解決方案,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2023-03-03AngularJS實現(xiàn)的select二級聯(lián)動下拉菜單功能示例
這篇文章主要介紹了AngularJS實現(xiàn)的select二級聯(lián)動下拉菜單功能,結(jié)合完整實例形式分析了AngularJS實現(xiàn)二級聯(lián)動菜單的具體操作步驟與相關(guān)實現(xiàn)技巧,需要的朋友可以參考下2017-10-10