"AngularJS 튜토리얼 - Hello 예제"의 두 판 사이의 차이

1번째 줄: 1번째 줄:
;AngularJS 튜토리얼
;AngularJS 튜토리얼
;AngularJS 시작하기


==hello.html==
==hello.html==

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 }}