www.w3schools.com 에서 AngularJS 를 공부하며 정리하는 글이다.

영어로 되어 있지만 쉬운 단어를 사용하고 있기에 크게 공부에 불편함은 없다.


 영어가 불편하다면 페이지를 한글로 번역해서 사용해도 거의 95% 이상 이해할 수 있을 정도로 번역이 된다.

AngularJS 외부 교육이 예정되어 있어 그전에 예습차원에서 공부를 하고 있다.


AngularJS Tutorial 

참고 : https://www.w3schools.com/angular/default.asp


- AngularJS 는 새로운 속성들로 HTML을 확장한다.

- AngularJS 는 하나의 페이지로 이루어진 어플리케이션에 적합하다.

- AngularJS 는 배우기 쉽다.


예시)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<body>
 
<div ng-app="">
 
<p>Input name in the input box:</p>
<p>Name : <input type="text" ng-model="name" placeholder="Enter name here"></p>
<h1>Hello {{name}}</h1>
 
</div>
 
</body>
</html>
 
cs


결과 

선수과목 : HTML, CSS, JavaScript에 대한 지식이 필요하다.

출시 : AngularJS 버전 1.0은 2012년에 구글에서 출시되었다.


+ Recent posts