AngularJS 튜토리얼 - Hello 예제

Jmnote (토론 | 기여)님의 2015년 6월 18일 (목) 18:12 판
AngularJS 튜토리얼
AngularJS 시작하기

1 hello.html

<!doctype html>
<html ng-app>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.16/angular.min.js"></script>
</head>
<body>

<label>이름:</label>
<input type="text" ng-model="yourName" placeholder="여기에 이름을 입력하세요">

<h1>안녕 {{yourName}}!</h1>

</body>
</html>

2 테스트

3 같이 보기

4 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}