AngularJs 彈出模態(tài)框(model)
來(lái)源:易賢網(wǎng) 閱讀:4712 次 日期:2016-07-08 14:28:23
溫馨提示:易賢網(wǎng)小編為您整理了“AngularJs 彈出模態(tài)框(model)”,方便廣大網(wǎng)友查閱!

這篇文章主要介紹了AngularJs 彈出模態(tài)框(model)的相關(guān)資料,需要的朋友可以參考下

$modal是一個(gè)可以迅速創(chuàng)建模態(tài)窗口的服務(wù),創(chuàng)建部分頁(yè),控制器,并關(guān)聯(lián)他們。

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

templateUrl:模態(tài)窗口的地址

template:用于顯示html標(biāo)簽

scope:一個(gè)作用域?yàn)槟B(tài)的內(nèi)容使用(事實(shí)上,$modal會(huì)創(chuàng)建一個(gè)當(dāng)前作用域的子作用域)默認(rèn)為$rootScope

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

resolve:定義一個(gè)成員并將他傳遞給$modal指定的控制器,相當(dāng)于routes的一個(gè)reslove屬性,如果需要傳遞一個(gè)objec對(duì)象,需要使用angular.copy()

backdrop:控制背景,允許的值:true(默認(rèn)),false(無(wú)背景),“static” - 背景是存在的,但點(diǎn)擊模態(tài)窗口之外時(shí),模態(tài)窗口不關(guān)閉

keyboard:當(dāng)按下Esc時(shí),模態(tài)對(duì)話框是否關(guān)閉,默認(rèn)為ture

windowClass:指定一個(gè)class并被添加到模態(tài)窗口中

open方法返回一個(gè)模態(tài)實(shí)例,該實(shí)例有如下屬性

close(result):關(guān)閉模態(tài)窗口并傳遞一個(gè)結(jié)果

dismiss(reason):撤銷(xiāo)模態(tài)方法并傳遞一個(gè)原因

result:一個(gè)契約,當(dāng)模態(tài)窗口被關(guān)閉或撤銷(xiāo)時(shí)傳遞

opened:一個(gè)契約,當(dāng)模態(tài)窗口打開(kāi)并且加載完內(nèi)容時(shí)傳遞的變量

另外,$modalInstance擴(kuò)展了兩個(gè)方法$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)窗口打開(kāi)之后執(zhí)行的函數(shù) 

console.log('modal is opened'); 

}); 

modalInstance.result.then(function (result) { 

console.log(result); 

}, function (reason) { 

console.log(reason);//點(diǎn)擊空白區(qū)域,總會(huì)輸出backdrop click,點(diǎn)擊取消,則會(huì)暑促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)容,希望對(duì)大家有所幫助!

更多信息請(qǐng)查看網(wǎng)絡(luò)編程
易賢網(wǎng)手機(jī)網(wǎng)站地址:AngularJs 彈出模態(tài)框(model)
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門(mén)公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國(guó)考·省考課程試聽(tīng)報(bào)名

  • 報(bào)班類(lèi)型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 新媒體/短視頻平臺(tái) | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專(zhuān)用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專(zhuān)用圖標(biāo)