AngularJS Input Controls - Data-Binding
AngularJS Input Controls - Data-Binding
입력 컨트롤은 HTML 입력 요소입니다.
1.input elements
2.select elements
3.button elements
4.textarea elements
Data-Binding
입력 컨트롤은 ng-model지시문 을 사용하여 데이터 바인딩을 제공합니다 .
<input type="text" ng-model="firstname">
응용 프로그램에 이제 명명 된 속성이 firstname있습니다.
이 ng-model지시문은 입력 컨트롤러를 나머지 응용 프로그램에 바인딩합니다.
이 속성 firstname은 컨트롤러에서 참조 할 수 있습니다.
예
<script>
var app = angular.module('myApp', []);
app.controller('formCtrl', function($scope) {
$scope.firstname = "John";
});
</script>
<!DOCTYPE html>
<html lang="en">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="formCtrl">
<form>
First Name: <input type="text" ng-model="firstname">
</form>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('formCtrl', function($scope) {
$scope.firstname = "John";
});
</script>
</body>
</html>
또한 응용 프로그램의 다른 곳에서도 참조 할 수 있습니다.
예
<form>
First Name: <input type="text" ng-model="firstname">
</form>
<h1>You entered: {{firstname}}</h1>
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<div ng-app="">
<form>
First Name: <input type="text" ng-model="firstname">
</form>
<h1>You entered: {{firstname}}</h1>
</div>
<p>Change the name inside the input field, and you will see the name in the header changes accordingly.</p>
</body>
</html>
입력 컨트롤은 HTML 입력 요소입니다.
1.input elements
2.select elements
3.button elements
4.textarea elements
Data-Binding
입력 컨트롤은 ng-model지시문 을 사용하여 데이터 바인딩을 제공합니다 .
<input type="text" ng-model="firstname">
응용 프로그램에 이제 명명 된 속성이 firstname있습니다.
이 ng-model지시문은 입력 컨트롤러를 나머지 응용 프로그램에 바인딩합니다.
이 속성 firstname은 컨트롤러에서 참조 할 수 있습니다.
예
<script>
var app = angular.module('myApp', []);
app.controller('formCtrl', function($scope) {
$scope.firstname = "John";
});
</script>
<!DOCTYPE html>
<html lang="en">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="formCtrl">
<form>
First Name: <input type="text" ng-model="firstname">
</form>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('formCtrl', function($scope) {
$scope.firstname = "John";
});
</script>
</body>
</html>
또한 응용 프로그램의 다른 곳에서도 참조 할 수 있습니다.
예
<form>
First Name: <input type="text" ng-model="firstname">
</form>
<h1>You entered: {{firstname}}</h1>
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<div ng-app="">
<form>
First Name: <input type="text" ng-model="firstname">
</form>
<h1>You entered: {{firstname}}</h1>
</div>
<p>Change the name inside the input field, and you will see the name in the header changes accordingly.</p>
</body>
</html>
게시판 목록
퍼블리싱강좌
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 298 | CSS |
선택과집중
|
2개월 전 | 162 | |
| 297 | CSS |
선택과집중
|
3개월 전 | 374 | |
| 296 | CSS |
선택과집중
|
3개월 전 | 323 | |
| 295 | CSS |
선택과집중
|
4개월 전 | 302 | |
| 294 | CSS |
선택과집중
|
4개월 전 | 429 | |
| 293 | CSS |
선택과집중
|
4개월 전 | 382 | |
| 292 | CSS |
선택과집중
|
4개월 전 | 297 | |
| 291 | CSS |
선택과집중
|
5개월 전 | 300 | |
| 290 | CSS |
선택과집중
|
5개월 전 | 349 | |
| 289 | CSS |
선택과집중
|
5개월 전 | 318 | |
| 288 | CSS |
선택과집중
|
5개월 전 | 403 | |
| 287 | CSS |
선택과집중
|
5개월 전 | 354 | |
| 286 | CSS |
선택과집중
|
5개월 전 | 353 | |
| 285 | CSS |
선택과집중
|
5개월 전 | 375 | |
| 284 | CSS |
선택과집중
|
5개월 전 | 260 | |
| 283 | CSS |
|
2년 전 | 1531 | |
| 282 | CSS | 2년 전 | 2513 | ||
| 281 | CSS | 4년 전 | 4042 | ||
| 280 | CSS | 4년 전 | 4560 | ||
| 279 | 반응형웹 | 5년 전 | 2989 | ||
| 278 | 반응형웹 | 5년 전 | 2844 | ||
| 277 | 부트스트랩 | 7년 전 | 5039 | ||
| 276 | 부트스트랩 | 7년 전 | 6593 | ||
| 275 | 부트스트랩 | 7년 전 | 4675 | ||
| 274 | 부트스트랩 | 7년 전 | 6708 | ||
| 273 | 부트스트랩 | 7년 전 | 3373 | ||
| 272 | 부트스트랩 | 7년 전 | 3208 | ||
| 271 | 부트스트랩 | 8년 전 | 3708 | ||
| 270 | 부트스트랩 | 8년 전 | 3237 | ||
| 269 | 부트스트랩 | 8년 전 | 3119 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기