AngularJs 彈出模態框(model)_AngularJS

來源:互聯網
上載者:User

推薦閱讀:詳解AngularJS 模態對話方塊

$modal是一個可以迅速建立模態視窗的服務,建立部分頁,控制器,並關聯他們。

$modal僅有一個方法open(options)

templateUrl:模態視窗的地址

template:用於顯示html標籤

scope:一個範圍為模態的內容使用(事實上,$modal會建立一個當前範圍的子範圍)預設為$rootScope

controller:為$modal指定的控制器,初始化$scope,該控制器可用$modalInstance注入

resolve:定義一個成員並將他傳遞給$modal指定的控制器,相當於routes的一個reslove屬性,如果需要傳遞一個objec對象,需要使用angular.copy()

backdrop:控制背景,允許的值:true(預設),false(無背景),“static” - 背景是存在的,但點擊模態視窗之外時,模態視窗不關閉

keyboard:當按下Esc時,模態對話方塊是否關閉,預設為ture

windowClass:指定一個class並被添加到模態視窗中

open方法返回一個模態執行個體,該執行個體有如下屬性

close(result):關閉模態視窗並傳遞一個結果

dismiss(reason):撤銷模態方法並傳遞一個原因

result:一個契約,當模態視窗被關閉或撤銷時傳遞

opened:一個契約,當模態視窗開啟並且載入完內容時傳遞的變數

另外,$modalInstance擴充了兩個方法$close(result)、$dismiss(reason),這些方法很容易關閉視窗並且不需要額外的控制器

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(){//模態視窗開啟之後執行的函數 console.log('modal is opened'); }); modalInstance.result.then(function (result) { console.log(result); }, function (reason) { console.log(reason);//點擊空白地區,總會輸出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 彈出模態框(model)的相關內容,希望對大家有所協助!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.