앵큘러js 간단한 예제
앵큘러js 간단한 예제
<div ng-app="myApp" ng-controller="formCtrl">
<form novalidate>
First Name:<br>
<input type="text" ng-model="user.firstName"><br>
Last Name:<br>
<input type="text" ng-model="user.lastName">
<br><br>
<button ng-click="reset()">RESET</button>
</form>
<p>form = {{user}}</p>
<p>master = {{master}}</p>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('formCtrl', function($scope) {
$scope.master = {firstName: "John", lastName: "Doe"};
$scope.reset = function() {
$scope.user = angular.copy($scope.master);
};
$scope.reset();
});
</script>
예제 설명
ng-app 프로그램 지시문은 AngularJS와 응용 프로그램을 정의합니다.
ng-controller 지시어는 응용 프로그램 컨트롤러를 정의합니다.
ng-model 지시자는 두 입력 요소 결합 사용자 모델의 개체.
formCtrl 제어기는 초기 값으로 설정 마스터 개체 정의 및 리셋 () 방법.
reset() 메소드 세트 사용자 받는 동일한 개체 마스터 개체.
ng-click 지시문은 호출 리셋 () 버튼을 클릭 할 경우에만 방법.
novalidate 속성은이 애플리케이션에서 필요하지 않지만 일반적으로 표준 HTML5 유효성 검사를 재정의하기 위해 AngularJS 형식으로 사용합니다.
<div ng-app="myApp" ng-controller="formCtrl">
<form novalidate>
First Name:<br>
<input type="text" ng-model="user.firstName"><br>
Last Name:<br>
<input type="text" ng-model="user.lastName">
<br><br>
<button ng-click="reset()">RESET</button>
</form>
<p>form = {{user}}</p>
<p>master = {{master}}</p>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('formCtrl', function($scope) {
$scope.master = {firstName: "John", lastName: "Doe"};
$scope.reset = function() {
$scope.user = angular.copy($scope.master);
};
$scope.reset();
});
</script>
예제 설명
ng-app 프로그램 지시문은 AngularJS와 응용 프로그램을 정의합니다.
ng-controller 지시어는 응용 프로그램 컨트롤러를 정의합니다.
ng-model 지시자는 두 입력 요소 결합 사용자 모델의 개체.
formCtrl 제어기는 초기 값으로 설정 마스터 개체 정의 및 리셋 () 방법.
reset() 메소드 세트 사용자 받는 동일한 개체 마스터 개체.
ng-click 지시문은 호출 리셋 () 버튼을 클릭 할 경우에만 방법.
novalidate 속성은이 애플리케이션에서 필요하지 않지만 일반적으로 표준 HTML5 유효성 검사를 재정의하기 위해 AngularJS 형식으로 사용합니다.
게시판 목록
퍼블리싱강좌
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 88 | jQuery Mobile | 8년 전 | 1930 | ||
| 87 | jQuery Mobile | 8년 전 | 1910 | ||
| 86 | jQuery Mobile | 8년 전 | 1517 | ||
| 85 | jQuery Mobile | 8년 전 | 1827 | ||
| 84 | jQuery Mobile | 8년 전 | 1863 | ||
| 83 | jQuery Mobile | 8년 전 | 1878 | ||
| 82 | jQuery Mobile | 8년 전 | 1650 | ||
| 81 | jQuery Mobile | 8년 전 | 1370 | ||
| 80 | jQuery Mobile | 8년 전 | 1805 | ||
| 79 | jQuery Mobile | 8년 전 | 1355 | ||
| 78 | jQuery Mobile | 8년 전 | 1752 | ||
| 77 | jQuery Mobile | 8년 전 | 1777 | ||
| 76 | jQuery Mobile | 8년 전 | 1787 | ||
| 75 | jQuery Mobile | 8년 전 | 1399 | ||
| 74 | jQuery Mobile | 8년 전 | 1537 | ||
| 73 | jQuery Mobile | 8년 전 | 1245 | ||
| 72 | jQuery Mobile | 8년 전 | 1627 | ||
| 71 | jQuery Mobile | 8년 전 | 1620 | ||
| 70 | jQuery Mobile | 8년 전 | 1502 | ||
| 69 | jQuery Mobile | 8년 전 | 1509 | ||
| 68 | jQuery Mobile | 8년 전 | 2045 | ||
| 67 | jQuery Mobile | 8년 전 | 1314 | ||
| 66 | jQuery Mobile | 8년 전 | 1691 | ||
| 65 | jQuery Mobile | 8년 전 | 1183 | ||
| 64 | jQuery Mobile | 8년 전 | 1466 | ||
| 63 | jQuery Mobile | 8년 전 | 1654 | ||
| 62 | jQuery Mobile | 8년 전 | 1632 | ||
| 61 | jQuery Mobile | 8년 전 | 1874 | ||
| 60 | jQuery Mobile | 8년 전 | 1405 | ||
| 59 | jQuery Mobile | 8년 전 | 1962 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기