AngularJs 팝업 모달 상자(모델)_AngularJS

WBOY
풀어 주다: 2016-05-16 15:06:10
원래의
1656명이 탐색했습니다.

추천 도서: AngularJS 모달 대화 상자에 대한 자세한 설명

$modal은 모달 창을 빠르게 생성하고 부분 페이지, 컨트롤러를 생성하고 연결할 수 있는 서비스입니다.

$modal에는 한 가지 방법만 열려 있습니다(옵션)

templateUrl: 모달 창의 주소

템플릿: HTML 태그를 표시하는 데 사용됩니다

범위: 범위가 모달인 콘텐츠에 사용됩니다(실제로 $modal은 현재 범위의 하위 범위를 생성합니다). 기본값은 $rootScope

컨트롤러: $modal에 지정된 컨트롤러는 $scope를 초기화하며 컨트롤러는 $modalInstance로 주입될 수 있습니다

해결: 멤버를 정의하고 $modal로 지정된 컨트롤러에 전달합니다. 이는 경로의 reslove 속성과 동일합니다. objec 객체를 전달해야 하는 경우 angle.copy()를 사용해야 합니다.

Backdrop: 배경 제어, 허용되는 값: true(기본값), false(배경 없음), "static" - 배경은 있지만 모달 창 외부를 클릭하면 모달 창이 닫히지 않습니다.

키보드: Esc 키를 눌렀을 때 모달 대화 상자가 닫히는지 여부 기본값은 true

windowClass: 클래스를 지정하고 모달 창에 추가합니다

open 메소드는 다음 속성을 가진 모달 인스턴스를 반환합니다

close(result): 모달 창을 닫고 결과를 전달합니다

dismiss(reason): 모달 메소드를 닫고 이유 전달

결과: 모달 창을 닫거나 닫을 때 계약이 통과되었습니다.

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 팝업 모달박스(모델) 관련 내용입니다. 많은 분들께 도움이 되었으면 좋겠습니다!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!