Angular.js 시작 1일


Angular.js 시작 1일

http://www.w3schools.com/ 을 통한 프레임워크 배움 단계. 기본적인 Framework 로 Client side application 빌드시 이용 시작예제) -input 값 변경시 바로 적용되는 html값 ng-app AngularJS와 응용 프로그램을 정의 ng-model 애플리케이션 데이터에 HTML 컨트롤의 값 ng-bind 지시문은 HTML보기로 응용 프로그램 데이터를 보여줌 <!DOCTYPE html> <html> <script src="</script'>https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script> <body> <div ng-app=""> <p>실시간 반영 글자:</p> <p>Name : <input type="text" ng-model="write"></p> <h1>Hello {{write}}</h1> </div> </body> </html> ng-model...



원문링크 : Angular.js 시작 1일