More actions
imported>jereneal20 No edit summary |
imported>jereneal20 No edit summary |
||
| Line 1: | Line 1: | ||
== AngularJS == | == AngularJS == | ||
* [ | * [http://angularjs.org 링크] | ||
<div ng-app=""> | <div ng-app=""> | ||
{{todos}} | {{todos}} | ||
Revision as of 19:28, 28 June 2013
AngularJS
<div ng-app=""> Template:Todos <h3 ng-init="todos=[]"> Topic </h3> <ul> <li ng-repeat="todo in todos" class="done-Template:Todo.done"> <input type="checkbox" ng-model="todo.done"/> Template:Todo.text <button ng-click="todos.splice($index,1)">x</button> </li> </ul> <form ng-submit="test && todos.push({text:test,done:false});test="> <input type="text" ng-model="test"/> <button>Input</button> </form> </div>